(self, connId, checkStatus=True)
| 4416 | # print self.__activeConnections |
| 4417 | |
| 4418 | def getConnectionData(self, connId, checkStatus=True): |
| 4419 | conn = self.__activeConnections[connId] |
| 4420 | if checkStatus is True: |
| 4421 | if ('Authenticated' in conn) is not True: |
| 4422 | # Can't keep going further |
| 4423 | raise Exception("User not Authenticated!") |
| 4424 | return conn |
| 4425 | |
| 4426 | def getRegisteredNamedPipes(self): |
| 4427 | return self.__registeredNamedPipes |
no outgoing calls
no test coverage detected