Guest User

Untitled

a guest
Dec 11th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.67 KB | None | 0 0
  1. class ActionExecutorImpl(Control__POA.ActionExecutor,
  2.                      ACSComponent,
  3.                      ContainerServices,
  4.                      ComponentLifecycle):
  5.     """
  6.    ActionExecutor component implementation.
  7.    """
  8.  
  9.     def __init__(self):
  10.         ACSComponent.__init__(self)
  11.         ContainerServices.__init__(self)
  12.         #TODO: Logs appears under the name 'None'. this should be changed.
  13.         self.logger = self.getLogger()
  14.         self.name = self._get_name()
  15.         # CDB path to ActionExecutor XMLs
  16.         self.cdbPathToXML = 'alma/CONTROL/ACTION_EXECUTOR'
  17.         # Debug mode flag
  18.         self.debugMode = False
  19.         self.actAlarm = None
Add Comment
Please, Sign In to add comment