def __init__(self): self.simpleTypes = Collection(self) self.complexTypes = Collection(self) self.attributes = Collection(self) self.elements = Collection(self) self.attrGroups = Collection(self) self.idConstraints = None self.modelGroups = None self.notations = None self.extensions = []
def __init__(self, targetNamespace=None): self.targetNamespace = targetNamespace or 'urn:this-document.wsdl' self.documentation = '' self.location = None self.document = None self.name = None self.services = Collection(self) self.messages = Collection(self) self.portTypes = Collection(self) self.bindings = Collection(self) self.imports = Collection(self) self.types = Types(self) self.extensions = []
def __init__(self, parent): Collection.__init__(self, parent) self.documentation = '' self.extensions = []
def __init__(self, name, documentation=''): Element.__init__(self, name, documentation) self.ports = Collection(self)
def __init__(self, name, documentation=''): Element.__init__(self, name, documentation) self.input = None self.output = None self.faults = Collection(self)
def __init__(self, name, type, documentation=''): Element.__init__(self, name, documentation) self.operations = Collection(self) self.type = type
def __init__(self, name, documentation='', parameterOrder=None): Element.__init__(self, name, documentation) self.parameterOrder = parameterOrder self.faults = Collection(self) self.input = None self.output = None
def __init__(self, name, documentation=''): Element.__init__(self, name, documentation) self.operations = Collection(self) self.resourceProperties = None