diff options
Diffstat (limited to 'java/demo/Ice/plugin/LoggerPluginFactoryI.java')
-rw-r--r-- | java/demo/Ice/plugin/LoggerPluginFactoryI.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/java/demo/Ice/plugin/LoggerPluginFactoryI.java b/java/demo/Ice/plugin/LoggerPluginFactoryI.java new file mode 100644 index 00000000000..b1d9052e048 --- /dev/null +++ b/java/demo/Ice/plugin/LoggerPluginFactoryI.java @@ -0,0 +1,20 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2009 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. +// +// ********************************************************************** + +import Ice.PluginFactory; +import Ice.LoggerPlugin; + +public class LoggerPluginFactoryI implements Ice.PluginFactory +{ + public Ice.Plugin + create(Ice.Communicator communicator, String name, String[] args) + { + return new Ice.LoggerPlugin(communicator, new LoggerI()); + } +} |