示例#1
0
 def unsetCellVariable(self, name):
     """Removes a Variable under Cell scope"""
     self.unsetVariable(name, None, AdminControl.getCell(), 'cells')
示例#2
0
 def setCellVariable(self, name, value):
     """Creates or updates a Variable under Cell scope"""
     self.setVariable(name, value, AdminControl.getCell(), 'cells')
示例#3
0
 def __init__(self, name=AdminControl.getCell()):
     self.name = name
     self.__servers = []
示例#4
0
 def updateCellVariable(self, name, value):
     """Update variables under Cell scope"""
     self.updateVariable(name, value, AdminControl.getCell(), 'cells')
示例#5
0
 def __init__(self, name = AdminControl.getCell()):
     self.name      = name
     self.__servers = []