Uses of Interface
org.apache.avalon.framework.component.ComponentManager
-
Packages that use ComponentManager 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 ComponentManager in org.apache.avalon.framework.component
Classes in org.apache.avalon.framework.component that implement ComponentManager Modifier and Type Class Description class
DefaultComponentManager
This class is a static implementation of a ComponentManager.class
WrapperComponentManager
This is aComponentManager
implementation that can wrap around aServiceManager
object effectively adapting aServiceManager
interface to aComponentManager
interface.Fields in org.apache.avalon.framework.component declared as ComponentManager Modifier and Type Field Description private ComponentManager
DefaultComponentManager. m_parent
Methods in org.apache.avalon.framework.component that return ComponentManager Modifier and Type Method Description protected ComponentManager
DefaultComponentManager. getParent()
Helper method for subclasses to retrieve parent.Methods in org.apache.avalon.framework.component with parameters of type ComponentManager Modifier and Type Method Description void
Composable. compose(ComponentManager componentManager)
Pass theComponentManager
to thecomposer
.void
Recomposable. recompose(ComponentManager componentManager)
Deprecated.Repass theComponentManager
to thecomposer
.Constructors in org.apache.avalon.framework.component with parameters of type ComponentManager Constructor Description DefaultComponentManager(ComponentManager parent)
Construct ComponentManager with specified parent. -
Uses of ComponentManager in org.apache.avalon.framework.container
Methods in org.apache.avalon.framework.container with parameters of type ComponentManager Modifier and Type Method Description static void
ContainerUtil. compose(java.lang.Object object, ComponentManager componentManager)
Deprecated.compose() is no longer the preferred method via which components will be supplied with Components. -
Uses of ComponentManager in org.apache.avalon.framework.service
Fields in org.apache.avalon.framework.service declared as ComponentManager Modifier and Type Field Description private ComponentManager
WrapperServiceManager. m_componentManager
The component manager thaty this class wraps.Constructors in org.apache.avalon.framework.service with parameters of type ComponentManager Constructor Description WrapperServiceManager(ComponentManager componentManager)
This constructor is a constructor for a WrapperServiceManager.
-