diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-08-08 16:09:22 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-08-08 16:09:22 -0230 |
commit | 36b0fecf6baca78f86ac16d236ef917d4fb0faff (patch) | |
tree | a979f4e822ff1a1a50475a45d4f228aff1353de2 /java/src/IceSSL/EndpointFactoryI.java | |
parent | ICE-5596 add Ice.Default.Timeout property (diff) | |
download | ice-36b0fecf6baca78f86ac16d236ef917d4fb0faff.tar.bz2 ice-36b0fecf6baca78f86ac16d236ef917d4fb0faff.tar.xz ice-36b0fecf6baca78f86ac16d236ef917d4fb0faff.zip |
Fixed lots of warnings.
Diffstat (limited to 'java/src/IceSSL/EndpointFactoryI.java')
-rw-r--r-- | java/src/IceSSL/EndpointFactoryI.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/java/src/IceSSL/EndpointFactoryI.java b/java/src/IceSSL/EndpointFactoryI.java index 74f04426d60..18354104ef7 100644 --- a/java/src/IceSSL/EndpointFactoryI.java +++ b/java/src/IceSSL/EndpointFactoryI.java @@ -16,16 +16,19 @@ final class EndpointFactoryI implements IceInternal.EndpointFactory _instance = instance; } + @Override public short type() { return _instance.type(); } + @Override public String protocol() { return _instance.protocol(); } + @Override public IceInternal.EndpointI create(java.util.ArrayList<String> args, boolean oaEndpoint) { IceInternal.IPEndpointI endpt = new EndpointI(_instance); @@ -33,16 +36,19 @@ final class EndpointFactoryI implements IceInternal.EndpointFactory return endpt; } + @Override public IceInternal.EndpointI read(IceInternal.BasicStream s) { return new EndpointI(_instance, s); } + @Override public void destroy() { _instance = null; } + @Override public IceInternal.EndpointFactory clone(IceInternal.ProtocolInstance instance) { return new EndpointFactoryI(new Instance(_instance.engine(), instance.type(), instance.protocol())); |