You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by si...@avalon.apache.org on 2004/01/10 20:03:36 UTC

[Apache Avalon Wiki] New: ServiceManager

   Date: 2004-01-10T11:03:35
   Editor: 160.33.82.119 <>
   Wiki: Apache Avalon Wiki
   Page: ServiceManager
   URL: http://wiki.apache.org/avalon/ServiceManager

   added basic ServiceManager description.  Will add more -farra

New Page:

= The Avalon ServiceManager =

The ServiceManager is part of the Avalon Framework.  It replaces the deprecated ComponentManager used in ECM.  The basic interface is as follows:

{{{
package org.apache.avalon.framework.service;

public interface ServiceManager
{

    Object lookup( String key ) throws ServiceException;

    boolean hasService( String key );

    void release( Object object );
}
}}}

see [http://avalon.apache.org/framework/api/org/apache/avalon/framework/service/ServiceManager.html javadocs] for more detailed information.

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org