Class WrapperComponentSelector
- java.lang.Object
-
- org.apache.avalon.framework.component.WrapperComponentSelector
-
- All Implemented Interfaces:
Component,ComponentSelector
public class WrapperComponentSelector extends java.lang.Object implements ComponentSelector
This is aServiceSelectorimplementation that can wrap around a legacyComponentSelectorobject effectively adapting aComponentSelectorinterface to aServiceSelectorinterface.- Since:
- 4.1.4
- Version:
- CVS $Revision: 1.11 $ $Date: 2004/02/11 14:34:25 $
- Author:
- Avalon Development Team
-
-
Constructor Summary
Constructors Constructor Description WrapperComponentSelector(java.lang.String key, ServiceSelector selector)This constructor is a constructor for a WrapperComponentSelector.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasComponent(java.lang.Object policy)Check to see if aComponentexists relative to the supplied policy.voidrelease(Component object)Return theObjectwhen you are finished with it.Componentselect(java.lang.Object policy)Select a Component based on a policy.
-
-
-
Constructor Detail
-
WrapperComponentSelector
public WrapperComponentSelector(java.lang.String key, ServiceSelector selector)This constructor is a constructor for a WrapperComponentSelector.- Parameters:
key- the key used to aquire this selectorselector- the selector to wrap
-
-
Method Detail
-
select
public Component select(java.lang.Object policy) throws ComponentException
Select a Component based on a policy.- Specified by:
selectin interfaceComponentSelector- Parameters:
policy- the policy- Returns:
- the Component
- Throws:
ComponentException- if unable to select service
-
hasComponent
public boolean hasComponent(java.lang.Object policy)
Check to see if aComponentexists relative to the supplied policy.- Specified by:
hasComponentin interfaceComponentSelector- Parameters:
policy- aObjectcontaining the selection criteria- Returns:
- True if the component is available, False if it not.
-
release
public void release(Component object)
Return theObjectwhen you are finished with it. This allows theServiceSelectorto handle the End-Of-Life Lifecycle events associated with theObject. Please note, that no Exception should be thrown at this point. This is to allow easy use of the ServiceSelector system without having to trap Exceptions on a release.- Specified by:
releasein interfaceComponentSelector- Parameters:
object- TheObjectwe are releasing.
-
-