Apache CXF API

org.apache.cxf.configuration
Interface ConfiguredBeanLocator


public interface ConfiguredBeanLocator


Nested Class Summary
static interface ConfiguredBeanLocator.BeanLoaderListener<T>
           
 
Method Summary
 List<String> getBeanNamesOfType(Class<?> type)
          Gets the names of all the configured beans of the specific type.
<T> T
getBeanOfType(String name, Class<T> type)
          Returns the bean of the given type and name.
<T> Collection<? extends T>
getBeansOfType(Class<T> type)
          Gets all the configured beans of the specific types.
 boolean hasConfiguredPropertyValue(String beanName, String propertyName, String value)
          For supporting "legacy" config, checks the configured bean to see if it has a property configured with the given name/value.
<T> boolean
loadBeansOfType(Class<T> type, ConfiguredBeanLocator.BeanLoaderListener<T> listener)
          Iterates through the beans of the given type, calling the listener to determine if it should be loaded or not.
 

Method Detail

getBeanNamesOfType

List<String> getBeanNamesOfType(Class<?> type)
Gets the names of all the configured beans of the specific type. Does not cause them to be loaded.

Parameters:
type -
Returns:

getBeansOfType

<T> Collection<? extends T> getBeansOfType(Class<T> type)
Gets all the configured beans of the specific types. Causes them all to be loaded.

Type Parameters:
T -
Parameters:
type -
Returns:

getBeanOfType

<T> T getBeanOfType(String name,
                    Class<T> type)
Returns the bean of the given type and name. Causes it to be loaded.

Type Parameters:
T -
Parameters:
name -
type -
Returns:

loadBeansOfType

<T> boolean loadBeansOfType(Class<T> type,
                            ConfiguredBeanLocator.BeanLoaderListener<T> listener)
Iterates through the beans of the given type, calling the listener to determine if it should be loaded or not.

Type Parameters:
T -
Parameters:
type -
listener -
Returns:

hasConfiguredPropertyValue

boolean hasConfiguredPropertyValue(String beanName,
                                   String propertyName,
                                   String value)
For supporting "legacy" config, checks the configured bean to see if it has a property configured with the given name/value. Mostly used for supporting things configured with "activationNamespaces" set.

Type Parameters:
T -
Parameters:
type -
property -
value -
Returns:

Apache CXF API

Apache CXF