summaryrefslogtreecommitdiff
path: root/java/src/Ice/PluginFactory.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/Ice/PluginFactory.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/Ice/PluginFactory.java')
-rw-r--r--java/src/Ice/PluginFactory.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/java/src/Ice/PluginFactory.java b/java/src/Ice/PluginFactory.java
new file mode 100644
index 00000000000..54715edd0f9
--- /dev/null
+++ b/java/src/Ice/PluginFactory.java
@@ -0,0 +1,16 @@
+// **********************************************************************
+//
+// Copyright (c) 2002
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+package Ice;
+
+public interface PluginFactory
+{
+ Plugin create(Communicator communicator, String name, String[] args);
+}