public class ImmutableNarrowingBean<T> extends AbstractImmutableBean<T>
A narrowing bean allows you to build a general purpose bean (likely a producer method), and register it for a narrowed type (or qualifiers). For example, you could create a producer method which uses an a String ID to located an object (the object can have any class):
@Produces
// Use some synthetic scope to prevent this from interfering with other
// resolutions
@MyProducer
Object produce(InjectionPoint ip)
{
String id = ip.getAnnotated().getAnnotation(Id.class).value();
// Lookup and return the object for the id
}
The delegate bean must return an object which can be cast to the
type T, otherwise a ClassCastException will be thrown at
runtime when the bean is created.
You can then register a narrowing bean for each type you need:
event.addBean(new NarrowingBeanBuilder<T>(delegateBean).readFromType(type).create());
ImmutableNarrowingBean will use the annotations on
defininingType to discover the qualifiers, types, scope,
stereotypes of the bean, as well as determine it's name (if any) and whether
it is an alternative.
The attributes are immutable, and collections are defensively copied on instantiation. It uses the defaults from the specification for properties if not specified.
NarrowingBeanBuilder,
ImmutablePassivationCapableNarrowingBean| Constructor and Description |
|---|
ImmutableNarrowingBean(javax.enterprise.inject.spi.Bean<Object> delegate,
String name,
Set<Annotation> qualifiers,
Class<? extends Annotation> scope,
Set<Class<? extends Annotation>> stereotypes,
Set<Type> types,
boolean alternative,
boolean nullable,
String toString)
Instantiate a new
ImmutableNarrowingBean. |
| Modifier and Type | Method and Description |
|---|---|
T |
create(javax.enterprise.context.spi.CreationalContext<T> creationalContext) |
void |
destroy(T instance,
javax.enterprise.context.spi.CreationalContext<T> creationalContext) |
getBeanClass, getInjectionPoints, getName, getQualifiers, getScope, getStereotypes, getTypes, isAlternative, isNullable, toStringpublic ImmutableNarrowingBean(javax.enterprise.inject.spi.Bean<Object> delegate, String name, Set<Annotation> qualifiers, Class<? extends Annotation> scope, Set<Class<? extends Annotation>> stereotypes, Set<Type> types, boolean alternative, boolean nullable, String toString)
ImmutableNarrowingBean.delegate - the bean to delegate the lifecycle toname - the name of the beanqualifiers - the qualifiers of the beanscope - the scope of the beanstereotypes - the bean's stereotypestypes - the types of the beanalternative - whether the bean is an alternativeCopyright © 2008–2013 Seam Framework. All rights reserved.