Package org.apache.cxf.configuration
Interface Configurer
- 
- All Known Implementing Classes:
- ConfigurerImpl,- ConfigurerImpl,- NullConfigurer
 
 public interface ConfigurerThe configurer's interface A class that implements this interface will perform a bean's configuration work
- 
- 
Field SummaryFields Modifier and Type Field Description static StringDEFAULT_USER_CFG_FILEstatic StringUSER_CFG_FILE_PROPERTY_NAMEstatic StringUSER_CFG_FILE_PROPERTY_URL
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigureBean(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 Detail- 
DEFAULT_USER_CFG_FILEstatic final String DEFAULT_USER_CFG_FILE - See Also:
- Constant Field Values
 
 - 
USER_CFG_FILE_PROPERTY_NAMEstatic final String USER_CFG_FILE_PROPERTY_NAME - See Also:
- Constant Field Values
 
 - 
USER_CFG_FILE_PROPERTY_URLstatic final String USER_CFG_FILE_PROPERTY_URL - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
configureBeanvoid configureBean(Object beanInstance) set 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
 
 - 
configureBeanvoid configureBean(String name, Object beanInstance) set 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
 
 
- 
 
-