All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zeroc.IceSSL.PluginFactory Maven / Gradle / Ivy

There is a newer version: 3.7.10
Show newest version
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

package com.zeroc.IceSSL;

/**
 * Plug-in factories must implement this interface.
 **/
public class PluginFactory implements com.zeroc.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
     * PluginInitializationException to provide more detailed information.
     **/
    @Override
    public com.zeroc.Ice.Plugin
    create(com.zeroc.Ice.Communicator communicator, String name, String[] args)
    {
        return new PluginI(communicator);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy