2016-02-29 10:48:00 +02:00
|
|
|
#!/usr/bin/python3
|
2016-02-21 03:24:54 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-02-21 03:32:22 +02:00
|
|
|
# @author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
2016-02-21 03:24:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Scope(object):
|
|
|
|
"""docstring for Scope"""
|
2016-02-25 01:46:27 +02:00
|
|
|
|
|
|
|
scopeInstance=None
|
|
|
|
|
2016-02-21 03:24:54 +02:00
|
|
|
def __init__(self):
|
|
|
|
super(Scope, self).__init__()
|
|
|
|
self.customMap = {}
|
|
|
|
self.configurationManager=None
|
2016-02-21 03:32:22 +02:00
|
|
|
self.logger=None
|
2016-02-21 03:24:54 +02:00
|
|
|
|
2016-02-25 01:46:27 +02:00
|
|
|
@staticmethod
|
|
|
|
def getInstance():
|
|
|
|
return scopeInstance
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def setInstance(scopeObj):
|
|
|
|
global scopeInstance
|
|
|
|
scopeInstance = scopeObj
|
|
|
|
|
2016-02-21 03:24:54 +02:00
|
|
|
def getCustomMap(self):
|
|
|
|
return self.customMap
|
|
|
|
|
|
|
|
def putCustomMap(self,name,value):
|
2016-02-21 03:32:22 +02:00
|
|
|
self.custom[str(name)]=value
|
|
|
|
|
|
|
|
def getCustomParam(self,name):
|
|
|
|
return self.customMap[str(name)]
|
2016-02-21 03:24:54 +02:00
|
|
|
|
|
|
|
def getConfigurationManager(self):
|
|
|
|
return self.configurationManager
|
|
|
|
|
2016-02-21 03:56:08 +02:00
|
|
|
def setConfigurationManager(self,configurationManager):
|
2016-02-21 03:24:54 +02:00
|
|
|
self.configurationManager = configurationManager
|
2016-02-21 03:32:22 +02:00
|
|
|
|
|
|
|
def getLogger(self):
|
|
|
|
return self.logger
|
|
|
|
|
|
|
|
def setLogger(self,logger):
|
|
|
|
self.logger = logger
|