| org.apache.cxf.configuration.Configurer
Configurer | public interface Configurer (Code) | | The configurer's interface
A class that implements this interface will perform the
bean's configuration work
|
USER_CFG_FILE_PROPERTY_NAME | String USER_CFG_FILE_PROPERTY_NAME(Code) | | |
USER_CFG_FILE_PROPERTY_URL | String USER_CFG_FILE_PROPERTY_URL(Code) | | |
configureBean | void configureBean(Object beanInstance)(Code) | | set up the Bean's value by use Dependency Injection from the application context
Parameters: beanInstance - the instance of bean which need to be configured |
configureBean | void configureBean(String name, Object beanInstance)(Code) | | set up the Bean's value by use 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 need to be configured Parameters: beanInstance - the instance of bean which need to be configured |
|
|