diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
commit | 3edb9d1e2ca92fff1bea08d23338cabee47dd2e7 (patch) | |
tree | b62a1dc465ac160616672c6a64f630396e4fae05 /java/src/Ice/ObjectPrx.java | |
parent | Synced with Ice for C++ changes. (diff) | |
download | ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.bz2 ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.xz ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.zip |
Fixed half of bug 847: ice_newIdentiy -> ice_identity, ice_newFacet ->
ice_facet, etc
Diffstat (limited to 'java/src/Ice/ObjectPrx.java')
-rw-r--r-- | java/src/Ice/ObjectPrx.java | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/java/src/Ice/ObjectPrx.java b/java/src/Ice/ObjectPrx.java index 5a0ebb73edf..4bff057a10c 100644 --- a/java/src/Ice/ObjectPrx.java +++ b/java/src/Ice/ObjectPrx.java @@ -39,20 +39,40 @@ public interface ObjectPrx java.util.Map context); Identity ice_getIdentity(); + /** + * @deprecated This method has been replaced with ice_identity. + **/ ObjectPrx ice_newIdentity(Identity newIdentity); + ObjectPrx ice_identity(Identity newIdentity); java.util.Map ice_getContext(); + /** + * @deprecated This method has been replaced with ice_context. + **/ ObjectPrx ice_newContext(java.util.Map newContext); + ObjectPrx ice_context(java.util.Map newContext); ObjectPrx ice_defaultContext(); - String ice_getFacet(); + String ice_getFacet(); + /** + * @deprecated This method has been replaced with ice_facet. + **/ ObjectPrx ice_newFacet(String newFacet); + ObjectPrx ice_facet(String newFacet); String ice_getAdapterId(); + /** + * @deprecated This method has been replaced with ice_adapterId. + **/ ObjectPrx ice_newAdapterId(String newAdapterId); + ObjectPrx ice_adapterId(String newAdapterId); Endpoint[] ice_getEndpoints(); + /** + * @deprecated This method has been replaced with ice_endpoints. + **/ ObjectPrx ice_newEndpoints(Endpoint[] newEndpoints); + ObjectPrx ice_endpoints(Endpoint[] newEndpoints); int ice_getLocatorCacheTimeout(); ObjectPrx ice_locatorCacheTimeout(int newTimeout); |