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

org.ow2.carol.util.configuration.ProtocolConfiguration Maven / Gradle / Ivy

There is a newer version: 3.0.10
Show newest version
/**
 * Copyright (C) 2005-2007 - Bull S.A.S.
 *
 * CAROL: Common Architecture for RMI ObjectWeb Layer
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 * USA
 *
 * --------------------------------------------------------------------------
 * $Id: ProtocolConfiguration.java 1483 2007-11-14 16:53:35Z loris $
 * --------------------------------------------------------------------------
 */
package org.ow2.carol.util.configuration;

import java.util.Hashtable;
import java.util.Properties;

import javax.naming.Context;
import javax.naming.NamingException;

/**
 * This interface defines an rmi configuration that is used by Carol.
 * @author Florent Benoit
 */
public interface ProtocolConfiguration {

    /**
     * @return the protocol used by this configuration.
     */
    Protocol getProtocol();

    /**
     * @return the name of this configuration
     */
    String getName();

    /**
     * Build an initial context with the given environment using our
     * configuration
     * @param env parameters for the initial context
     * @return an InitialContext
     * @throws NamingException if the context is not created
     */
    Context getInitialContext(Hashtable env) throws NamingException;

    /**
     * @return properties of this configuration
     */
    Properties getProperties();

    /**
     * @return the host.
     */
    String getHost();

    /**
     * @return the port for this protocol name service
     */
    int getPort();

    /**
     * @return the Provider URL attribute
     */
    String getProviderURL();

    /**
     * Configure this configuration with a given properties object
     * @param properties given properties
     * @throws ConfigurationException if the given config is invalid
     */
    void configure(Properties properties) throws ConfigurationException;

    /**
     * @return the jndi environment
     */
    Hashtable getJndiEnv();

    /**
     * @return true if CMI is enabled for this protocol
     */
    boolean isCmiEnabled();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy