1 16 17 package org.springframework.beans.factory.config; 18 19 import java.beans.PropertyDescriptor ; 20 21 import org.springframework.beans.BeansException; 22 import org.springframework.beans.PropertyValues; 23 24 46 public interface InstantiationAwareBeanPostProcessor extends BeanPostProcessor { 47 48 69 Object postProcessBeforeInstantiation(Class beanClass, String beanName) throws BeansException; 70 71 82 boolean postProcessAfterInstantiation(Object bean, String beanName) throws BeansException; 83 84 102 PropertyValues postProcessPropertyValues( 103 PropertyValues pvs, PropertyDescriptor [] pds, Object bean, String beanName) 104 throws BeansException; 105 106 } 107 | Popular Tags |