Package com.zeroc.IceSSL
Class PluginFactory
java.lang.Object
com.zeroc.IceSSL.PluginFactory
- All Implemented Interfaces:
PluginFactory
Plug-in factories must implement this interface.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreate
(Communicator communicator, String name, String[] args) Returns a new plug-in.
-
Constructor Details
-
PluginFactory
public PluginFactory()
-
-
Method Details
-
create
Returns a new plug-in.- Specified by:
create
in interfacePluginFactory
- Parameters:
communicator
- The communicator for the plug-in.name
- The name of the plug-in.args
- The arguments that are specified in the plug-in's configuration.- Returns:
- The new plug-in.
null
can be returned to indicate that a general error occurred. Alternatively,create
can throw PluginInitializationException to provide more detailed information.
-