Package org.apache.cxf.configuration
Interface Configurer
- All Known Implementing Classes:
- ConfigurerImpl,- NullConfigurer
public interface Configurer
The configurer's interface
 A class that implements this interface will perform a
 bean's configuration work
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionvoidconfigureBean(Object beanInstance) set up the Bean's value by using Dependency Injection from the application contextvoidconfigureBean(String name, Object beanInstance) set up the Bean's value by using Dependency Injection from the application context with a proper name.
- 
Field Details- 
DEFAULT_USER_CFG_FILE- See Also:
 
- 
USER_CFG_FILE_PROPERTY_NAME- See Also:
 
- 
USER_CFG_FILE_PROPERTY_URL- See Also:
 
 
- 
- 
Method Details- 
configureBeanset up the Bean's value by using Dependency Injection from the application context- Parameters:
- beanInstance- the instance of the bean which needs to be configured
 
- 
configureBeanset up the Bean's value by using Dependency Injection from the application context with a proper name. You can use * as the prefix of wildcard name.- Parameters:
- name- the name of the bean which needs to be configured
- beanInstance- the instance of bean which need to be configured
 
 
-