diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-06-22 14:29:06 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-06-22 14:29:06 +0000 |
commit | 732c32225f8d8ad31a58e58c66457182bbfa5e24 (patch) | |
tree | 33d3b0fe0c5785db24627b7214435d3f2c1a1f4b /java/src/Ice/ObjectPrx.java | |
parent | Added some missing functions (diff) | |
download | ice-732c32225f8d8ad31a58e58c66457182bbfa5e24.tar.bz2 ice-732c32225f8d8ad31a58e58c66457182bbfa5e24.tar.xz ice-732c32225f8d8ad31a58e58c66457182bbfa5e24.zip |
More proxy method changes
Diffstat (limited to 'java/src/Ice/ObjectPrx.java')
-rw-r--r-- | java/src/Ice/ObjectPrx.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/Ice/ObjectPrx.java b/java/src/Ice/ObjectPrx.java index 0e930d7137f..c489b9f60f5 100644 --- a/java/src/Ice/ObjectPrx.java +++ b/java/src/Ice/ObjectPrx.java @@ -85,13 +85,13 @@ public interface ObjectPrx int ice_getLocatorCacheTimeout(); ObjectPrx ice_locatorCacheTimeout(int newTimeout); - boolean ice_getCacheConnection(); - ObjectPrx ice_cacheConnection(boolean newCache); + boolean ice_isConnectionCached(); + ObjectPrx ice_connectionCached(boolean newCache); EndpointSelectionType ice_getEndpointSelection(); ObjectPrx ice_endpointSelection(EndpointSelectionType newType); - boolean ice_getSecure(); + boolean ice_isSecure(); ObjectPrx ice_secure(boolean b); Ice.RouterPrx ice_getRouter(); |