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

org.infinispan.cdi.common.util.ImmutableBean Maven / Gradle / Ivy

The newest version!
package org.infinispan.cdi.common.util;

import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.Set;

import jakarta.enterprise.context.Dependent;
import jakarta.enterprise.context.spi.CreationalContext;
import jakarta.enterprise.inject.Default;
import jakarta.enterprise.inject.spi.Bean;
import jakarta.enterprise.inject.spi.InjectionPoint;

/**
 * 

* A base class for implementing {@link Bean}. The attributes are immutable, and * collections are defensively copied on instantiation. It uses the defaults * from the specification for properties if not specified. *

*

*

* This bean delegates it's lifecycle to the callbacks on the provided * {@link ContextualLifecycle}. *

* * @author Stuart Douglas * @author Pete Muir * @see AbstractImmutableBean * @see BeanBuilder * @see ImmutablePassivationCapableBean */ public class ImmutableBean extends AbstractImmutableBean implements Bean { private final ContextualLifecycle contextualLifecycle; /** * Create a new, immutable bean. All arguments passed as collections are * defensively copied. * * @param beanClass The Bean class, may not be null * @param name The bean name * @param qualifiers The bean's qualifiers, if null, a singleton set of * {@link Default} is used * @param scope The bean's scope, if null, the default scope of * {@link Dependent} is used * @param stereotypes The bean's stereotypes, if null, an empty set is used * @param types The bean's types, if null, the beanClass and {@link Object} * will be used * @param alternative True if the bean is an alternative * @param nullable True if the bean is nullable * @param injectionPoints the bean's injection points, if null an empty set * is used * @param contextualLifecycle Handler for {@link #create(CreationalContext)} * and {@link #destroy(Object, CreationalContext)} * @param toString the string representation of the bean, if null the built * in representation is used, which states the bean class and * qualifiers * @throws IllegalArgumentException if the beanClass is null */ public ImmutableBean(Class beanClass, String name, Set qualifiers, Class scope, Set> stereotypes, Set types, boolean alternative, boolean nullable, Set injectionPoints, ContextualLifecycle contextualLifecycle, String toString) { super(beanClass, name, qualifiers, scope, stereotypes, types, alternative, nullable, injectionPoints, toString); this.contextualLifecycle = contextualLifecycle; } public T create(CreationalContext arg0) { return contextualLifecycle.create(this, arg0); } public void destroy(T arg0, CreationalContext arg1) { contextualLifecycle.destroy(this, arg0, arg1); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy