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

net.sf.andromedaioc.bean.instantiation.Instantiator Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.bean.instantiation;

import net.sf.andromedaioc.exception.BeanInstantiationException;

/**
 * Instance wrapper
 *
 * @author Alexey Mitrov
 */
public interface Instantiator {

    /**
     * Create new instance of bean
     *
     * @return new instance of bean
     * @throws BeanInstantiationException
     */
    Object newInstance() throws BeanInstantiationException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy