예제 #1
0
    def __init__(self, cardConnectionComponent):
        """Construct a new remote card connection.

        connection: the reader connection
        """
        Pyro.core.ObjBase.__init__(self)
        CardConnectionDecorator.__init__(self, cardConnectionComponent)
예제 #2
0
    def __init__(self, cardConnectionComponent):
        """Construct a new remote card connection.

        connection: the reader connection
        """
        Pyro.core.ObjBase.__init__(self)
        CardConnectionDecorator.__init__(self, cardConnectionComponent)
예제 #3
0
 def __init__(self, connection, **kw):
     self.scp = SCP02(**kw)
     self.connection = connection
     CardConnectionDecorator.__init__(self, connection)
     if 'GAFdict' in kw:
         assert isinstance(kw['GAFdict'], dict), "GAF dictionary expected"
         self.objects = kw['GAFdict']
     else:
         self.objects = {}
 def __init__(self, cardconnection):
     CardConnectionDecorator.__init__(self, cardconnection)
 def __init__(self, cardconnection):
     CardConnectionDecorator.__init__(self, cardconnection)
예제 #6
0
 def __init__( self, connection, **kw ):
     self.scp = SCP02( **kw )
     self.connection = connection
     CardConnectionDecorator.__init__( self, connection )
예제 #7
0
 def __init__( self, connection, **kw ):
     self.scp = SCP03( **kw )
     self.connection = connection
     CardConnectionDecorator.__init__( self, connection )
예제 #8
0
 def __init__(self, connection, **kw):
     self.objects = kw
     self.connection = connection
     CardConnectionDecorator.__init__(self, connection)
예제 #9
0
 def __init__(self, connection, **kw):
     self.objects = kw
     self.connection = connection
     CardConnectionDecorator.__init__(self, connection)