Esempio n. 1
0
 def __init__(self, type, method, attribs, filters=None, orderby=None, fields=None):
     _Base.__init__(self)
     self.type = type
     self.method = method
     self.attribs = attribs
     self.filters = filters
     self.orderby = orderby
     self.fields = fields
Esempio n. 2
0
 def __init__(self, application, auth, xml_data):
     _Base.__init__(self)
     self.application = application
     self.auth = auth
     self.xml_data = xml_data
     self._header = True
Esempio n. 3
0
 def __init__(self, datatype):
     _Base.__init__(self)
     self.datatype = datatype
Esempio n. 4
0
 def __init__(self, company, username, password):
     _Base.__init__(self)
     self.company = company
     self.username = username
     self.password = password
Esempio n. 5
0
 def __init__(self, application, code):
     _Base.__init__(self)
     self.application = application
     self.code = str(code)
     self._header = True
Esempio n. 6
0
 def __init__(self, application, auth, xml_data):
     _Base.__init__(self)
     self.application = application
     self.auth = auth
     self.xml_data = xml_data
     self._header = True
Esempio n. 7
0
 def __init__(self, datatype):
     _Base.__init__(self)
     self.datatype = datatype
Esempio n. 8
0
 def __init__(self, type, attribs, datatype):
     _Base.__init__(self)
     self.type = type
     self.attribs = attribs
     self.datatype = datatype.getDatatype()
Esempio n. 9
0
 def __init__(self, uid, page, app, arg):
     _Base.__init__(self)
     self.uid = uid
     self.page = page
     self.app = app
     self.arg = arg
Esempio n. 10
0
 def __init__(self, type, datatype):
     _Base.__init__(self)
     self.type = type
     self.datatype = datatype
Esempio n. 11
0
 def __init__(self, company, user):
     _Base.__init__(self)
     self.company = company
     self.user = user
Esempio n. 12
0
 def __init__(self, type, datatype, approval):
     _Base.__init__(self)
     self.type = type
     self.datatype = datatype.getDatatype()
     self.approval = approval.getDatatype()
Esempio n. 13
0
 def __init__(self, type, datatype1, datatype2):
     _Base.__init__(self)
     self.type = type
     self.datatype1 = datatype1.getDatatype()
     self.datatype2 = datatype2.getDatatype()
Esempio n. 14
0
 def __init__(self, application, code):
     _Base.__init__(self)
     self.application = application
     self.code = str(code)
     self._header = True
Esempio n. 15
0
 def __init__(self, type, fields):
     _Base.__init__(self)
     self.type = type
     self.fields = fields
Esempio n. 16
0
 def __init__(self, company, username, password):
     _Base.__init__(self)
     self.company = company
     self.username = username
     self.password = password
Esempio n. 17
0
 def __init__(self):
     _Base.__init__(self)