summaryrefslogtreecommitdiff
path: root/java/src/IceSSL/SslEndpointFactory.java
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-03-22 22:13:46 +0000
committerMark Spruiell <mes@zeroc.com>2006-03-22 22:13:46 +0000
commit8366a429b1e870c689b86d81c62d7e9a3f33f9f8 (patch)
tree1d7434ba4d2a2d5a5f1824382cb6957626b1d486 /java/src/IceSSL/SslEndpointFactory.java
parentSslTransceiver -> TransceiverI (diff)
downloadice-8366a429b1e870c689b86d81c62d7e9a3f33f9f8.tar.bz2
ice-8366a429b1e870c689b86d81c62d7e9a3f33f9f8.tar.xz
ice-8366a429b1e870c689b86d81c62d7e9a3f33f9f8.zip
SslEndpointFactory -> EndpointFactoryI
Diffstat (limited to 'java/src/IceSSL/SslEndpointFactory.java')
-rw-r--r--java/src/IceSSL/SslEndpointFactory.java50
1 files changed, 0 insertions, 50 deletions
diff --git a/java/src/IceSSL/SslEndpointFactory.java b/java/src/IceSSL/SslEndpointFactory.java
deleted file mode 100644
index d7feb5ee7b7..00000000000
--- a/java/src/IceSSL/SslEndpointFactory.java
+++ /dev/null
@@ -1,50 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-package IceSSL;
-
-final class SslEndpointFactory implements IceInternal.EndpointFactory
-{
- SslEndpointFactory(Instance instance)
- {
- _instance = instance;
- }
-
- public short
- type()
- {
- return SslEndpointI.TYPE;
- }
-
- public String
- protocol()
- {
- return "ssl";
- }
-
- public IceInternal.EndpointI
- create(String str)
- {
- return new SslEndpointI(_instance, str);
- }
-
- public IceInternal.EndpointI
- read(IceInternal.BasicStream s)
- {
- return new SslEndpointI(_instance, s);
- }
-
- public void
- destroy()
- {
- _instance = null;
- }
-
- private Instance _instance;
-}