com.github.datalking.beans.factory.config.InstantiationAwareBeanPostProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-mvc Show documentation
Show all versions of play-mvc Show documentation
simple mvc framework based on java servlet.
The newest version!
package com.github.datalking.beans.factory.config;
import com.github.datalking.beans.PropertyValues;
import java.beans.PropertyDescriptor;
/**
* @author yaoo on 4/18/18
*/
public interface InstantiationAwareBeanPostProcessor extends BeanPostProcessor {
Object postProcessBeforeInstantiation(Class> beanClass, String beanName);
boolean postProcessAfterInstantiation(Object bean, String beanName);
PropertyValues postProcessPropertyValues(PropertyValues pvs,
PropertyDescriptor[] pds,
Object bean,
String beanName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy