summaryrefslogtreecommitdiff
path: root/java/src/Ice/ObjectPrx.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-03-28 14:03:50 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-03-28 14:03:50 +0000
commit3edb9d1e2ca92fff1bea08d23338cabee47dd2e7 (patch)
treeb62a1dc465ac160616672c6a64f630396e4fae05 /java/src/Ice/ObjectPrx.java
parentSynced with Ice for C++ changes. (diff)
downloadice-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.java22
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);