Ejemplo n.º 1
0
 def __init__(self, **kwds):
     Plugin.__init__(self, **kwds)
     #super(ManagedSingletonPlugin,self).__init__(**kwds)
     declare_option(name=self.name,
                    section="Services",
                    local_name="enable",
                    default=self._enable,
                    cls=BoolOption,
                    doc="Option that controls behavior of service %s." %
                    self.name)
Ejemplo n.º 2
0
 def __init__(self, **kwds):
     Plugin.__init__(self, **kwds)
     #super(ManagedSingletonPlugin,self).__init__(**kwds)
     declare_option(
         name=self.name,
         section="Services",
         local_name="enable",
         default=self._enable,
         cls=BoolOption,
         doc="Option that controls behavior of service %s." % self.name)
Ejemplo n.º 3
0
 def __init__(self, *args, **kwds):  #pragma:nocover
     Plugin.__init__(self, *args, **kwds)
     workflow.Workflow.__init__(self, *args, **kwds)
Ejemplo n.º 4
0
 def __init__(self, *args, **kwds):  #pragma:nocover
     Plugin.__init__(self, *args, **kwds)
     task.Task.__init__(self, *args, **kwds)