summaryrefslogtreecommitdiff
path: root/java/src/IceDiscovery/PluginFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceDiscovery/PluginFactory.java')
-rw-r--r--java/src/IceDiscovery/PluginFactory.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/java/src/IceDiscovery/PluginFactory.java b/java/src/IceDiscovery/PluginFactory.java
new file mode 100644
index 00000000000..e400e885d7b
--- /dev/null
+++ b/java/src/IceDiscovery/PluginFactory.java
@@ -0,0 +1,19 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2013 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 IceDiscovery;
+
+public class PluginFactory implements Ice.PluginFactory
+{
+ public Ice.Plugin
+ create(Ice.Communicator communicator, String name, String[] args)
+ {
+ return new PluginI(communicator);
+ }
+}