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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]