All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.datalking.beans.factory.config.InstantiationAwareBeanPostProcessor Maven / Gradle / Ivy

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