Declared in module Service
Service.Service
Service.AbstractService
class Service(AbstractService): def Service.Service.__init__(self, name, chainer, proxy_class, auth=None) # Initializes a Service instance. def Service.Service.startInstance(self, session) # Start an instance of this session. # Inherited from Service.AbstractService def Service.AbstractService.__init__(self, name) # Initializes an AbstractService instance or a derivative. def Service.AbstractService.__str__(self) def Service.AbstractService.startInstance(self, session) # Function to start an instance of this service. None auth = None None chainer = None None proxy_class = None
Service encapsulates a firewall service going through the firewall. A service consists of a Proxy class, a chainer instance and an authenticator instance.
Initializes a Service instance.
Start an instance of this session.