示例#1
0
    def __init__(self, name=None):
        if name is None:
            name = 'journald'

        TCPService.__init__(self, name)

        # the remote request marshaller
        self.marshaller = None
        self._counter = 0

        return
示例#2
0
    def __init__(self, name=None):
        if name is None:
            name = 'journald'

        TCPService.__init__(self, name)

        # the remote request marshaller
        self.marshaller = None
        self._counter = 0

        return
示例#3
0
    def __init__(self, name=None):
        if name is None:
            name = "ipa"
            
        TCPService.__init__(self, name)

        # the user manager
        self.userManager = None

        # private data
        self._tickets = {}

        return
示例#4
0
    def __init__(self, name=None):
        if name is None:
            name = 'idd'
        TCPService.__init__(self, name)

        self.tid = 0
        self.date = ""

        # the filename that holds the persistent copy of the locator generators
        self.configfile = self.name + '-config.pml'

        # the codec for record locators
        self.locator = None

        # private data
        self._reload = True

        return
示例#5
0
    def __init__(self, name=None):
        if name is None:
            name = 'idd'
        TCPService.__init__(self, name)

        self.tid = 0
        self.date = ""

        # the filename that holds the persistent copy of the locator generators
        self.configfile = self.name + '-config.pml'

        # the codec for record locators
        self.locator = None

        # private data
        self._reload = True

        return