mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 12:22:18 +03:00
23 lines
641 B
Python
23 lines
641 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
|
|
|
|
|
class Scope(object):
|
|
"""docstring for Scope"""
|
|
def __init__(self):
|
|
super(Scope, self).__init__()
|
|
self.customMap = {}
|
|
self.configurationManager=None
|
|
|
|
def getCustomMap(self):
|
|
return self.customMap
|
|
|
|
def putCustomMap(self,name,value):
|
|
self.custom[name]=value
|
|
|
|
def getConfigurationManager(self):
|
|
return self.configurationManager
|
|
|
|
def serConfigurationManager(self,configurationManager):
|
|
self.configurationManager = configurationManager
|