org.objectweb.carol.jndi.ns.NameService Maven / Gradle / Ivy
/**
* Copyright (C) 2002,2005 - INRIA (www.inria.fr)
*
* CAROL: Common Architecture for RMI ObjectWeb Layer
*
* This library is developed inside the ObjectWeb Consortium,
* http://www.objectweb.org
*
* 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: NameService.java 1272 2007-09-11 11:43:56Z loris $
* --------------------------------------------------------------------------
*/
package org.objectweb.carol.jndi.ns;
/**
* Interface NameService
is the CAROL Name Service generic
* interface. This is the carol SPI for a Name Service
* @author Guillaume Riviere
* @author Florent Benoit (Add methods for fixing firewall issues)
*/
@Deprecated
public interface NameService extends org.ow2.carol.jndi.ns.NameService {
/**
* start Method, Start a new NameService or do nothing if the name service
* is all ready start
* @throws NameServiceException if a problem occure
*/
void start() throws NameServiceException;
/**
* stop Method, Stop a NameService or do nothing if the name service is all
* ready stop
* @throws NameServiceException if a problem occure
*/
void stop() throws NameServiceException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy