@param wsdl: A wsdl object @type wsdl: L{Definitions} @param service: A service B{name}. @type service: str
(self, wsdl, service)
| 43 | """ |
| 44 | |
| 45 | def __init__(self, wsdl, service): |
| 46 | """ |
| 47 | @param wsdl: A wsdl object |
| 48 | @type wsdl: L{Definitions} |
| 49 | @param service: A service B{name}. |
| 50 | @type service: str |
| 51 | """ |
| 52 | self.wsdl = wsdl |
| 53 | self.service = service |
| 54 | self.ports = [] |
| 55 | self.params = [] |
| 56 | self.types = [] |
| 57 | self.prefixes = [] |
| 58 | self.addports() |
| 59 | self.paramtypes() |
| 60 | self.publictypes() |
| 61 | self.getprefixes() |
| 62 | self.pushprefixes() |
| 63 | |
| 64 | def pushprefixes(self): |
| 65 | """ |
nothing calls this directly
no test coverage detected