javax.enterprise.inject.spi.ProducerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdi-api Show documentation
Show all versions of cdi-api Show documentation
APIs for CDI (Contexts and Dependency Injection for Java EE)
package javax.enterprise.inject.spi;
/**
*
* An {@link ProducerFactory} can create an {@link Producer} for a given bean.
*
*
*
* The {@link ProducerFactory} obtained from {@link BeanManager#getProducerFactory(AnnotatedMethod, Bean)} or
* {@link BeanManager#getProducerFactory(AnnotatedField, Bean)} is capable of providing container created
* producers. This factory can be wrapped to add behavior to container created producers.
*
*
*
* For example:
*
*
*
* BeanAttributes<MyBean> myBeanAttributes = beanManager.createBeanAttributes(myBeanAnnotatedFieldField);
* beanManager.createBean(myBeanAttributes, MyBean.class, new ProducerFactory() {
*
* public <T> Producer<T> createProducer(Bean<T> bean) {
* return new WrappingProducer<T>(beanManager.getProducerFactory(myBeanAnnotatedField).createProducer(bean));
* }
* });
*
*
* @author Pete Muir
* @since 1.1
*/
public interface ProducerFactory {
/**
* Create a new producer for a bean.
*
* @param bean the bean to create the producer for, or null if creating a non-contextual object
* @return the producer
*/
public Producer createProducer(Bean bean);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy