Uses of Interface
org.apache.avalon.framework.service.ServiceManager
-
Packages that use ServiceManager Package Description org.apache.avalon.framework.component Deprecated: use the interfaces in theorg.apache.avalon.framework.service
package instead.org.apache.avalon.framework.container Utilities supporting execution of component lifecycle stages.org.apache.avalon.framework.service Interfaces and default implementation of a service management framework supporting container based service lookup and decommissioning. -
-
Uses of ServiceManager in org.apache.avalon.framework.component
Fields in org.apache.avalon.framework.component declared as ServiceManager Modifier and Type Field Description private ServiceManager
WrapperComponentManager. m_manager
The service manager we are adapting.Constructors in org.apache.avalon.framework.component with parameters of type ServiceManager Constructor Description WrapperComponentManager(ServiceManager manager)
Creation of a new wrapper component manger using a supplied service manager as a source backing the wrapped. -
Uses of ServiceManager in org.apache.avalon.framework.container
Methods in org.apache.avalon.framework.container with parameters of type ServiceManager Modifier and Type Method Description static void
ContainerUtil. service(java.lang.Object object, ServiceManager serviceManager)
Supply specified object with ServiceManager if it implements theServiceable
interface. -
Uses of ServiceManager in org.apache.avalon.framework.service
Classes in org.apache.avalon.framework.service that implement ServiceManager Modifier and Type Class Description class
DefaultServiceManager
This class is a static implementation of aServiceManager
.class
WrapperServiceManager
This is aServiceManager
implementation that can wrap around a legacyComponentManager
object effectively adapting aComponentManager
interface to aServiceManager
interface.Fields in org.apache.avalon.framework.service declared as ServiceManager Modifier and Type Field Description private ServiceManager
DefaultServiceManager. m_parent
Methods in org.apache.avalon.framework.service that return ServiceManager Modifier and Type Method Description protected ServiceManager
DefaultServiceManager. getParent()
Helper method for subclasses to retrieve parent.Methods in org.apache.avalon.framework.service with parameters of type ServiceManager Modifier and Type Method Description void
Serviceable. service(ServiceManager manager)
Pass theServiceManager
to theServiceable
.Constructors in org.apache.avalon.framework.service with parameters of type ServiceManager Constructor Description DefaultServiceManager(ServiceManager parent)
ConstructServiceManager
with specified parent.
-