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/IceSSL/SslEndpointFactory.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/IceSSL/SslEndpointFactory.java')
-rw-r--r-- | java/src/IceSSL/SslEndpointFactory.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/src/IceSSL/SslEndpointFactory.java b/java/src/IceSSL/SslEndpointFactory.java index 06f645b343c..89c4f8072bd 100644 --- a/java/src/IceSSL/SslEndpointFactory.java +++ b/java/src/IceSSL/SslEndpointFactory.java @@ -19,7 +19,7 @@ final class SslEndpointFactory implements IceInternal.EndpointFactory public short type() { - return SslEndpoint.TYPE; + return SslEndpointI.TYPE; } public String @@ -28,16 +28,16 @@ final class SslEndpointFactory implements IceInternal.EndpointFactory return "ssl"; } - public IceInternal.Endpoint + public IceInternal.EndpointI create(String str) { - return new SslEndpoint(_instance, str); + return new SslEndpointI(_instance, str); } - public IceInternal.Endpoint + public IceInternal.EndpointI read(IceInternal.BasicStream s) { - return new SslEndpoint(_instance, s); + return new SslEndpointI(_instance, s); } public void |