diff options
author | Bernard Normier <bernard@zeroc.com> | 2014-09-08 12:03:16 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2014-09-08 12:03:16 -0400 |
commit | a0f6b6fc1a619c40979f5ba00d71dc661cfc6499 (patch) | |
tree | 81b40da86417ed18a186d595c119bb7823b17fcf /py/python/Ice.py | |
parent | ICE-5658 - NPM support for IceJS distribution (diff) | |
download | ice-a0f6b6fc1a619c40979f5ba00d71dc661cfc6499.tar.bz2 ice-a0f6b6fc1a619c40979f5ba00d71dc661cfc6499.tar.xz ice-a0f6b6fc1a619c40979f5ba00d71dc661cfc6499.zip |
Fixed ICE-5667: Added Communicator::createAdmin in C++, Java, C# and Python
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 9be78a0d465..33234632965 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -616,6 +616,9 @@ class CommunicatorI(Communicator): def end_flushBatchRequests(self, r): return self._impl.end_flushBatchRequests(r) + def createAdmin(self, adminAdapter, adminIdentity): + return self._impl.createAdmin(adminAdapter, adminIdentity) + def getAdmin(self): return self._impl.getAdmin() |