diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-02-08 20:17:26 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-02-08 20:17:26 +0000 |
commit | 6b669e5ba099f8ae780faae2a4865fc611f178a9 (patch) | |
tree | a34ba4e9bcf23352147a8b95fc8d67ec6a08d65a /java/src/IceInternal/ReferenceFactory.java | |
parent | changing sequence unmarshaling for fixed-length types (diff) | |
download | ice-6b669e5ba099f8ae780faae2a4865fc611f178a9.tar.bz2 ice-6b669e5ba099f8ae780faae2a4865fc611f178a9.tar.xz ice-6b669e5ba099f8ae780faae2a4865fc611f178a9.zip |
Reference fixes:
- Moving _secure to RoutableReference
- Fixing changeDefault()
- Fixing changeRouter() and changeLocator() to return appropriate values
Diffstat (limited to 'java/src/IceInternal/ReferenceFactory.java')
-rw-r--r-- | java/src/IceInternal/ReferenceFactory.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/java/src/IceInternal/ReferenceFactory.java b/java/src/IceInternal/ReferenceFactory.java index fb089380d0a..13c97e1732c 100644 --- a/java/src/IceInternal/ReferenceFactory.java +++ b/java/src/IceInternal/ReferenceFactory.java @@ -64,7 +64,7 @@ public final class ReferenceFactory // Create new reference // IndirectReference ref = new IndirectReference(_instance, ident, context, facet, mode, secure, - adapterId, routerInfo, locatorInfo, collocationOptimization); + adapterId, routerInfo, locatorInfo, collocationOptimization); return updateCache(ref); } @@ -73,8 +73,6 @@ public final class ReferenceFactory java.util.Map context, String facet, int mode, - boolean secure, - boolean collocationOptimization, Ice.ConnectionI[] fixedConnections) { if(_instance == null) @@ -90,7 +88,7 @@ public final class ReferenceFactory // // Create new reference // - FixedReference ref = new FixedReference(_instance, ident, context, facet, mode, secure, fixedConnections); + FixedReference ref = new FixedReference(_instance, ident, context, facet, mode, fixedConnections); return updateCache(ref); } |