org.apache.cxf.configuration
Class NullConfigurer
java.lang.Object
org.apache.cxf.configuration.NullConfigurer
- All Implemented Interfaces:
- Configurer
public class NullConfigurer
- extends Object
- implements Configurer
Method Summary |
void |
configureBean(Object beanInstance)
set up the Bean's value by using Dependency Injection from the application context |
void |
configureBean(String name,
Object beanInstance)
set up the Bean's value by using Dependency Injection from the application context
with a proper name. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NullConfigurer
public NullConfigurer()
configureBean
public void configureBean(Object beanInstance)
- Description copied from interface:
Configurer
- set up the Bean's value by using Dependency Injection from the application context
- Specified by:
configureBean
in interface Configurer
- Parameters:
beanInstance
- the instance of the bean which needs to be configured
configureBean
public void configureBean(String name,
Object beanInstance)
- Description copied from interface:
Configurer
- 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.
- Specified by:
configureBean
in interface Configurer
- Parameters:
name
- the name of the bean which needs to be configuredbeanInstance
- the instance of bean which need to be configured
Apache CXF