From b51469b41167fb86ae2059a15cf0475c53fdda7b Mon Sep 17 00:00:00 2001 From: Matthew Newhook Date: Mon, 20 Oct 2014 11:40:05 -0230 Subject: Down with ant. From the gradle to the grave. --- java/src/IceSSL/PluginFactory.java | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 java/src/IceSSL/PluginFactory.java (limited to 'java/src/IceSSL/PluginFactory.java') diff --git a/java/src/IceSSL/PluginFactory.java b/java/src/IceSSL/PluginFactory.java deleted file mode 100644 index 5fb43644b03..00000000000 --- a/java/src/IceSSL/PluginFactory.java +++ /dev/null @@ -1,34 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2014 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; - -/** - * Plug-in factories must implement this interface. - **/ -public class PluginFactory implements Ice.PluginFactory -{ - /** - * Returns a new plug-in. - * - * @param communicator The communicator for the plug-in. - * @param name The name of the plug-in. - * @param args The arguments that are specified in the plug-in's configuration. - * - * @return The new plug-in. null can be returned to indicate - * that a general error occurred. Alternatively, create can throw - * {@link PluginInitializationException} to provide more detailed information. - **/ - @Override - public Ice.Plugin - create(Ice.Communicator communicator, String name, String[] args) - { - return new PluginI(communicator); - } -} -- cgit v1.2.3