From 28967bd6396949c89faf19ad409a6d626ba8ae37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Volkan=20=C5=9Eahin?= Date: Fri, 18 Mar 2016 18:38:33 +0200 Subject: [PATCH] messager added to scope --- opt/ahenk/base/Scope.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/opt/ahenk/base/Scope.py b/opt/ahenk/base/Scope.py index 5483676..f3c149a 100644 --- a/opt/ahenk/base/Scope.py +++ b/opt/ahenk/base/Scope.py @@ -21,6 +21,7 @@ class Scope(object): self.eventManager=None self.executionManager=None self.dbService=None + self.messager=None @staticmethod @@ -100,3 +101,11 @@ class Scope(object): def setDbService(self,dbService): self.dbService = dbService + + def getMessager(self): + return self.messager + + def setMessager(self,messager): + self.messager = messager + +