diff options
Diffstat (limited to 'java/jdk/1.4/IceSSL/PluginFactory.java')
-rw-r--r-- | java/jdk/1.4/IceSSL/PluginFactory.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/java/jdk/1.4/IceSSL/PluginFactory.java b/java/jdk/1.4/IceSSL/PluginFactory.java new file mode 100644 index 00000000000..70064d8a1b0 --- /dev/null +++ b/java/jdk/1.4/IceSSL/PluginFactory.java @@ -0,0 +1,19 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2007 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; + +public class PluginFactory implements Ice.PluginFactory +{ + public Ice.Plugin + create(Ice.Communicator communicator, String name, String[] args) + { + return new PluginI(communicator); + } +} |