diff options
author | Jose <jose@zeroc.com> | 2009-07-15 22:20:47 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-07-15 22:20:47 +0200 |
commit | 4293e7261847b861b89a69f54606719538f66b11 (patch) | |
tree | 7edfe18ab1d65b2262feb0070bb423f594284456 /java/src/Ice/ObjectPrxHelperBase.java | |
parent | 4019 - Minimal demo still not minimimal (diff) | |
download | ice-4293e7261847b861b89a69f54606719538f66b11.tar.bz2 ice-4293e7261847b861b89a69f54606719538f66b11.tar.xz ice-4293e7261847b861b89a69f54606719538f66b11.zip |
Add ice_getConnectionId to Proxy api.
commit 96047f7c59f38bcdf8b920d2acad61be96db7101
Author: Jose Gutierrez <pepone@dhcppc0.(none)>
Date: Wed Jul 15 22:16:38 2009 +0200
Add ice_getConnectionId to Proxy api.
Diffstat (limited to 'java/src/Ice/ObjectPrxHelperBase.java')
-rw-r--r-- | java/src/Ice/ObjectPrxHelperBase.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/src/Ice/ObjectPrxHelperBase.java b/java/src/Ice/ObjectPrxHelperBase.java index 285f6d7e6a6..87978423164 100644 --- a/java/src/Ice/ObjectPrxHelperBase.java +++ b/java/src/Ice/ObjectPrxHelperBase.java @@ -587,6 +587,18 @@ public class ObjectPrxHelperBase implements ObjectPrx, java.io.Serializable } /** + * Returns the connection id of this proxy. + * + * @return The connection id. + * + **/ + public final String + ice_getConnectionId() + { + return _reference.getConnectionId(); + } + + /** * Creates a new proxy that is identical to this proxy, except for the locator cache timeout. * * @param newTimeout The new locator cache timeout (in seconds). |