diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-09-09 09:37:35 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-09-09 09:37:35 +0000 |
commit | b2ea05d550077826840214a453b1ba0ac1418b39 (patch) | |
tree | d6c37e3857d25733c95b19ad2013e59a8ba3c95b /java/src/Ice/ObjectPrx.java | |
parent | Added new proxy methods: ice_getEndpoints(), ice_getAdapterId(), (diff) | |
download | ice-b2ea05d550077826840214a453b1ba0ac1418b39.tar.bz2 ice-b2ea05d550077826840214a453b1ba0ac1418b39.tar.xz ice-b2ea05d550077826840214a453b1ba0ac1418b39.zip |
Added support for new proxy methods (ice_getAdapterId(),
ice_newAdapterId(), ice_getEndpoints(), ice_newEndpoints()).
Diffstat (limited to 'java/src/Ice/ObjectPrx.java')
-rw-r--r-- | java/src/Ice/ObjectPrx.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/java/src/Ice/ObjectPrx.java b/java/src/Ice/ObjectPrx.java index c7d6ac1cca4..bb5a155e671 100644 --- a/java/src/Ice/ObjectPrx.java +++ b/java/src/Ice/ObjectPrx.java @@ -48,6 +48,12 @@ public interface ObjectPrx String ice_getFacet(); ObjectPrx ice_newFacet(String newFacet); + String ice_getAdapterId(); + ObjectPrx ice_newAdapterId(String newAdapterId); + + Endpoint[] ice_getEndpoints(); + ObjectPrx ice_newEndpoints(Endpoint[] newEndpoints); + ObjectPrx ice_twoway(); boolean ice_isTwoway(); ObjectPrx ice_oneway(); |