summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/EndpointFactory.java
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-05-02 03:27:07 +0000
committerMark Spruiell <mes@zeroc.com>2002-05-02 03:27:07 +0000
commit5f342d668a30647b7d7182b4b296e65f7cfc2b07 (patch)
tree53f13aa7e79a77da4ca6133cf170812d3995d8b2 /java/src/IceInternal/EndpointFactory.java
parentadding assertions (diff)
downloadice-5f342d668a30647b7d7182b4b296e65f7cfc2b07.tar.bz2
ice-5f342d668a30647b7d7182b4b296e65f7cfc2b07.tar.xz
ice-5f342d668a30647b7d7182b4b296e65f7cfc2b07.zip
align with C++ changes for thread pool, properties, plug-ins
Diffstat (limited to 'java/src/IceInternal/EndpointFactory.java')
-rw-r--r--java/src/IceInternal/EndpointFactory.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/java/src/IceInternal/EndpointFactory.java b/java/src/IceInternal/EndpointFactory.java
new file mode 100644
index 00000000000..396e6f2a183
--- /dev/null
+++ b/java/src/IceInternal/EndpointFactory.java
@@ -0,0 +1,20 @@
+// **********************************************************************
+//
+// Copyright (c) 2002
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+package IceInternal;
+
+public interface EndpointFactory
+{
+ short type();
+ String protocol();
+ Endpoint create(String str);
+ Endpoint read(BasicStream s);
+ void destroy();
+}