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

com.github.datalking.beans.factory.support.InstantiationStrategy Maven / Gradle / Ivy

package com.github.datalking.beans.factory.support;

import com.github.datalking.beans.factory.BeanFactory;

import java.lang.reflect.Constructor;
import java.lang.reflect.Method;

/**
 * @author yaoo on 5/29/18
 */
public interface InstantiationStrategy {

    Object instantiate(RootBeanDefinition beanDefinition, String beanName, BeanFactory owner);

    Object instantiate(RootBeanDefinition beanDefinition, String beanName, BeanFactory owner,
                       Constructor ctor, Object[] args);

    Object instantiate(RootBeanDefinition beanDefinition, String beanName, BeanFactory owner,
                       Object factoryBean, Method factoryMethod, Object[] args);

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy