public class ApiConsistencyCheck extends Object implements org.springframework.beans.factory.config.BeanPostProcessor
Constructor and Description |
---|
ApiConsistencyCheck() |
Modifier and Type | Method and Description |
---|---|
static boolean |
matches(Class apiType,
Class opsType)
Defines what Class types match.
|
Object |
postProcessAfterInitialization(Object arg0,
String arg1)
Apply this BeanPostProcessor to the given new bean instance after any bean
initialization callbacks (like InitializingBean's
afterPropertiesSet
or a custom init-method). |
Object |
postProcessBeforeInitialization(Object arg0,
String arg1)
No-op
|
public Object postProcessAfterInitialization(Object arg0, String arg1) throws org.springframework.beans.BeansException
org.springframework.beans.factory.config.BeanPostProcessor
afterPropertiesSet
or a custom init-method). The bean will already be populated with property values.
The returned bean instance may be a wrapper around the original.
In case of a FactoryBean, this callback will be invoked for both the FactoryBean
instance and the objects created by the FactoryBean (as of Spring 2.0). The
post-processor can decide whether to apply to either the FactoryBean or created
objects or both through corresponding bean instanceof FactoryBean
checks.
This callback will also be invoked after a short-circuiting triggered by a
InstantiationAwareBeanPostProcessor.postProcessBeforeInstantiation(java.lang.Class<?>, java.lang.String)
method,
in contrast to all other BeanPostProcessor callbacks.
postProcessAfterInitialization
in interface org.springframework.beans.factory.config.BeanPostProcessor
arg0
- the new bean instancearg1
- the name of the beanorg.springframework.beans.BeansException
- in case of errorsInitializingBean.afterPropertiesSet()
,
FactoryBean
public Object postProcessBeforeInitialization(Object arg0, String arg1) throws org.springframework.beans.BeansException
postProcessBeforeInitialization
in interface org.springframework.beans.factory.config.BeanPostProcessor
arg0
- the new bean instancearg1
- the name of the beanorg.springframework.beans.BeansException
- in case of errorsInitializingBean.afterPropertiesSet()
Version: 5.1.3-ice35-b52
Copyright © 2015 The University of Dundee & Open Microscopy Environment. All Rights Reserved.