IceSSL.PluginFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice Show documentation
Show all versions of ice Show documentation
Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms
// **********************************************************************
//
// Copyright (c) 2003-2017 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 Ice.PluginInitializationException} to provide more detailed information.
**/
@Override
public Ice.Plugin
create(Ice.Communicator communicator, String name, String[] args)
{
return new PluginI(communicator);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy