diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-05-27 12:29:18 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-05-27 12:29:18 -0230 |
commit | 781e357a2e4703af1d292d1169ad9f1249792330 (patch) | |
tree | b49458392e6e3d99dc97e5f817d499276768a1d4 /py/python/Ice.py | |
parent | Bug 3502: Improve javadoc support in Eclipse (diff) | |
download | ice-781e357a2e4703af1d292d1169ad9f1249792330.tar.bz2 ice-781e357a2e4703af1d292d1169ad9f1249792330.tar.xz ice-781e357a2e4703af1d292d1169ad9f1249792330.zip |
Bug 3964 - improve endpoint info
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 5bc379d4235..71e4e5fa1a9 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -192,6 +192,7 @@ import Ice_Communicator_ice import Ice_Current_ice import Ice_ImplicitContext_ice import Ice_Endpoint_ice +import Ice_EndpointTypes_ice import Ice_Identity_ice import Ice_LocalException_ice import Ice_Locator_ice @@ -207,7 +208,12 @@ import Ice_ServantLocator_ice # del Endpoint Endpoint = IcePy.Endpoint - +del TcpEndpoint +TcpEndpoint = IcePy.TcpEndpoint +del UdpEndpoint +UdpEndpoint = IcePy.UdpEndpoint +del OpaqueEndpoint +OpaqueEndpoint = IcePy.OpaqueEndpoint class ThreadNotification(object): def __init__(self): @@ -447,6 +453,12 @@ class ObjectAdapterI(ObjectAdapter): def refreshPublishedEndpoints(self): self._impl.refreshPublishedEndpoints() + def getEndpoints(self): + return self._impl.getEndpoints() + + def getPublishedEndpoints(self): + return self._impl.getPublishedEndpoints() + # # Logger wrapper. # |