|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BeanManager
Allows a portable extension to interact directly with the container. Provides operations for obtaining contextual references for beans, along with many other operations of use to portable extensions.
Any bean may obtain an instance of BeanManager by injecting it:
@Inject BeanManager manager;
Java EE components may obtain an instance of BeanManager from JNDI by looking up the name
java:comp/BeanManager
.
Any operation of BeanManager may be called at any time during the execution of the application.
Method Summary | ||
---|---|---|
boolean |
areInterceptorBindingsEquivalent(Annotation interceptorBinding1,
Annotation interceptorBinding2)
Determine if two interceptor bindings are considered equivalent for the purposes of typesafe resolution, taking into account any members annotated with Nonbinding . |
|
boolean |
areQualifiersEquivalent(Annotation qualifier1,
Annotation qualifier2)
Determine if two qualifiers are considered equivalent for the purposes of typesafe resolution, taking into account any members annotated with Nonbinding . |
|
|
createAnnotatedType(Class<T> type)
Obtain an AnnotatedType that may be used to read the annotations of the given class or interface. |
|
|
createBean(BeanAttributes<T> attributes,
Class<?> beanClass,
Producer<T> producer)
Obtains a Bean for the given BeanAttributes , bean class and Producer . |
|
|
createBean(BeanAttributes<T> attributes,
Class<T> beanClass,
InjectionTarget<T> injectionTarget)
Obtains a Bean for the given BeanAttributes , bean class and InjectionTarget . |
|
BeanAttributes<?> |
createBeanAttributes(AnnotatedMember<?> type)
Obtains a BeanAttributes for the given AnnotatedType . |
|
|
createBeanAttributes(AnnotatedType<T> type)
Obtains a BeanAttributes for the given AnnotatedType . |
|
|
createCreationalContext(Contextual<T> contextual)
Obtain an instance of a CreationalContext for the given
contextual type, or for a non-contextual object. |
|
InjectionPoint |
createInjectionPoint(AnnotatedField<?> field)
Obtains a container provided implementation of InjectionPoint for the given AnnotatedField . |
|
InjectionPoint |
createInjectionPoint(AnnotatedParameter<?> parameter)
Obtains a container provided implementation of InjectionPoint for the given AnnotatedParameter . |
|
|
createInjectionTarget(AnnotatedType<T> type)
Obtains an InjectionTarget for the given AnnotatedType . |
|
|
createProducer(AnnotatedField<? super X> field,
Bean<X> declaringBean)
Obtains a Producer for the given AnnotatedField . |
|
|
createProducer(AnnotatedMethod<? super X> method,
Bean<X> declaringBean)
Obtains a Producer for the given AnnotatedKetuod . |
|
void |
fireEvent(Object event,
Annotation... qualifiers)
Fire an event and notify observers. |
|
|
getAnnotatedType(Class<T> type,
String id)
Obtain the AnnotatedType that may be used to read the annotations of the given class or interface
as defined during container initialization. |
|
|
getAnnotatedTypes(Class<T> type)
Obtain the AnnotatedType s that may be used to read the annotations of the given class or interface
as defined during container initialization. |
|
Set<Bean<?>> |
getBeans(String name)
Return the set of beans which have the given EL name and are available for injection in the module or library containing the class into which the BeanManager was injected or the Java EE component from whose JNDI environment namespace the BeanManager was obtained, according to the rules of EL name resolution. |
|
Set<Bean<?>> |
getBeans(Type beanType,
Annotation... qualifiers)
Return the set of beans which have the given required type and qualifiers and are available for injection in the module or library containing the class into which the BeanManager was injected or the Java EE component from whose JNDI environment namespace the BeanManager was obtained, according to the rules of typesafe resolution. |
|
Context |
getContext(Class<? extends Annotation> scopeType)
Obtains an active context object for the given scope . |
|
javax.el.ELResolver |
getELResolver()
Returns a ELResolver that resolves beans by EL name. |
|
|
getExtension(Class<T> extensionClass)
Obtains the container's instance of an Extension class declared in META-INF/services . |
|
Object |
getInjectableReference(InjectionPoint ij,
CreationalContext<?> ctx)
Obtains an injectable reference for a certain injection point. |
|
Set<Annotation> |
getInterceptorBindingDefinition(Class<? extends Annotation> bindingType)
Obtains the set of meta-annotations for a certain interceptor binding type . |
|
int |
getInterceptorBindingHashCode(Annotation interceptorBinding)
Determine the hash code of an interceptor binding, using the JDK algorithm for determining an annotation hash code, ignoring any members annotated with Nonbinding . |
|
Bean<?> |
getPassivationCapableBean(String id)
Returns the PassivationCapable bean with the given identifier. |
|
int |
getQualifierHashCode(Annotation qualifier)
Determine the hash code of a qualifier, using the JDK algorithm for determining an annotation hash code, ignoring any members annotated with Nonbinding . |
|
Object |
getReference(Bean<?> bean,
Type beanType,
CreationalContext<?> ctx)
Obtains a contextual reference for a certain bean and a certain bean type of the bean. |
|
Set<Annotation> |
getStereotypeDefinition(Class<? extends Annotation> stereotype)
Obtains meta-annotations for a certain stereotype. |
|
boolean |
isInterceptorBinding(Class<? extends Annotation> annotationType)
Test the given annotation type to determine if it is an interceptor binding type . |
|
boolean |
isNormalScope(Class<? extends Annotation> annotationType)
Test the given annotation type to determine if it is a normal scope type. |
|
boolean |
isPassivatingScope(Class<? extends Annotation> annotationType)
Test the given annotation type to determine if it is a passivating scope type. |
|
boolean |
isQualifier(Class<? extends Annotation> annotationType)
Test the given annotation type to determine if it is a qualifier type. |
|
boolean |
isScope(Class<? extends Annotation> annotationType)
Test the given annotation type to determine if it is a scope type. |
|
boolean |
isStereotype(Class<? extends Annotation> annotationType)
Test the given annotation type to determine if it is a stereotype. |
|
|
resolve(Set<Bean<? extends X>> beans)
Apply the ambiguous dependency resolution rules to a set of beans. |
|
List<Decorator<?>> |
resolveDecorators(Set<Type> types,
Annotation... qualifiers)
Return an ordered list of decorators for a set of bean types and a set of qualifiers and which are enabled in the module or library containing the class into which the BeanManager was injected or the Java EE component from whose JNDI environment namespace the BeanManager was obtained. |
|
List<Interceptor<?>> |
resolveInterceptors(InterceptionType type,
Annotation... interceptorBindings)
Return an ordered list of enabled interceptors for a set of interceptor bindings and a type of interception and which are enabled in the module or library containing the class into which the BeanManager was injected or the Java EE component from whose JNDI environment namespace the BeanManager was obtained. |
|
|
resolveObserverMethods(T event,
Annotation... qualifiers)
Return the set of observers for an event. |
|
void |
validate(InjectionPoint injectionPoint)
Validate a certain injection point. |
|
javax.el.ExpressionFactory |
wrapExpressionFactory(javax.el.ExpressionFactory expressionFactory)
Returns a wrapper ExpressionFactory that delegates MethodExpression and
ValueExpression creation to the given ExpressionFactory . |
Method Detail |
---|
Object getReference(Bean<?> bean, Type beanType, CreationalContext<?> ctx)
bean
- the Bean
object representing the beanbeanType
- a bean type that must be implemented by any client proxy that is returnedctx
- a CreationalContext
that may be used to destroy any object with scope
Dependent
that is created
IllegalArgumentException
- if the given type is not a bean type of the given beanObject getInjectableReference(InjectionPoint ij, CreationalContext<?> ctx)
ij
- the target injection pointctx
- a CreationalContext
that may be used to destroy any object with scope
Dependent
that is created
UnsatisfiedResolutionException
- if typesafe resolution results in an unsatisfied dependency
AmbiguousResolutionException
- typesafe resolution results in an unresolvable ambiguous dependency<T> CreationalContext<T> createCreationalContext(Contextual<T> contextual)
CreationalContext
for the given
contextual type, or for a non-contextual object.
contextual
- the Contextual
, or a null value in the case of a non-contextual
object
CreationalContext
Set<Bean<?>> getBeans(Type beanType, Annotation... qualifiers)
beanType
- the required bean typequalifiers
- the required qualifiers
IllegalArgumentException
- if the given type represents a type variable
IllegalArgumentException
- if two instances of the same qualifier type are given
IllegalArgumentException
- if an instance of an annotation that is not a qualifier type is givenSet<Bean<?>> getBeans(String name)
name
- the EL name
Bean<?> getPassivationCapableBean(String id)
PassivationCapable
bean with the given identifier.
id
- the identifier
Bean
that implements PassivationCapable
and has the given
identifier, or a null value if there is no such bean<X> Bean<? extends X> resolve(Set<Bean<? extends X>> beans)
X
- a common type of the beansbeans
- a set of beans of the given type
AmbiguousResolutionException
- if the ambiguous dependency resolution rules failvoid validate(InjectionPoint injectionPoint)
injectionPoint
- the injection point to validate
InjectionException
- if there is a deployment problem (for example, an unsatisfied or unresolvable ambiguous
dependency) associated with the injection pointvoid fireEvent(Object event, Annotation... qualifiers)
event
- the event objectqualifiers
- the event qualifiers
IllegalArgumentException
- if the runtime type of the event object contains a type variable
IllegalArgumentException
- if two instances of the same qualifier type are given
IllegalArgumentException
- if an instance of an annotation that is not a qualifier type is given
IllegalArgumentException
- if the runtime type of the event object is assignable to the type of a container lifecycle event
ObserverException
- if a notified observer throws a checked exception, it will be wrapped and
rethrown as an (unchecked) ObserverException
<T> Set<ObserverMethod<? super T>> resolveObserverMethods(T event, Annotation... qualifiers)
T
- the type of the eventevent
- the event objectqualifiers
- the event qualifiers
IllegalArgumentException
- if the runtime type of the event object contains a type variable
IllegalArgumentException
- if two instances of the same qualifier type are given
IllegalArgumentException
- if an instance of an annotation that is not a qualifier type is givenList<Decorator<?>> resolveDecorators(Set<Type> types, Annotation... qualifiers)
types
- the set of bean types of the decorated beanqualifiers
- the qualifiers declared by the decorated bean
IllegalArgumentException
- if the set of bean types is empty
IllegalArgumentException
- if an annotation which is not a binding type is passed
IllegalArgumentException
- if two instances of the same binding type are passedList<Interceptor<?>> resolveInterceptors(InterceptionType type, Annotation... interceptorBindings)
type
- the type of the interceptioninterceptorBindings
- the interceptor bindings
IllegalArgumentException
- if no interceptor binding type is given
IllegalArgumentException
- if two instances of the same interceptor binding type are given
IllegalArgumentException
- if an instance of an annotation that is not an interceptor binding type is givenboolean isScope(Class<? extends Annotation> annotationType)
annotationType
- the annotation type
boolean isNormalScope(Class<? extends Annotation> annotationType)
annotationType
- the annotation type
boolean isPassivatingScope(Class<? extends Annotation> annotationType)
annotationType
- the annotation type
boolean isQualifier(Class<? extends Annotation> annotationType)
annotationType
- the annotation type
boolean isInterceptorBinding(Class<? extends Annotation> annotationType)
annotationType
- the annotation to test
boolean isStereotype(Class<? extends Annotation> annotationType)
annotationType
- the annotation type
Set<Annotation> getInterceptorBindingDefinition(Class<? extends Annotation> bindingType)
bindingType
- the interceptor binding type
Set<Annotation> getStereotypeDefinition(Class<? extends Annotation> stereotype)
stereotype
- the stereotype
boolean areQualifiersEquivalent(Annotation qualifier1, Annotation qualifier2)
Nonbinding
.
a1
- a qualifier to checka2
- a qualifier to check
boolean areInterceptorBindingsEquivalent(Annotation interceptorBinding1, Annotation interceptorBinding2)
Nonbinding
.
a1
- an interceptor binding to checka2
- an interceptor binding to check
int getQualifierHashCode(Annotation qualifier)
Nonbinding
.
qualifier
- the qualifier to consider
int getInterceptorBindingHashCode(Annotation interceptorBinding)
Nonbinding
.
interceptorBinding
- the interceptor binding to consider
Context getContext(Class<? extends Annotation> scopeType)
scopeType
- the scope
ContextNotActiveException
- if there is no active context object for the given scope
IllegalArgumentException
- if there is more than one active context object for the given scopejavax.el.ELResolver getELResolver()
ELResolver
that resolves beans by EL name.
javax.el.ExpressionFactory wrapExpressionFactory(javax.el.ExpressionFactory expressionFactory)
ExpressionFactory
that delegates MethodExpression
and
ValueExpression
creation to the given ExpressionFactory
. When a Unified EL expression
is evaluated using a MethodExpression
or ValueExpression
returned by the wrapper
ExpressionFactory
, the container handles destruction of objects with scope
Dependent
.
expressionFactory
- the ExpressionFactory
to wrap
ExpressionFactory
<T> AnnotatedType<T> createAnnotatedType(Class<T> type)
AnnotatedType
that may be used to read the annotations of the given class or interface.
T
- the class or interfacetype
- the Class
object
AnnotatedType
<T> AnnotatedType<T> getAnnotatedType(Class<T> type, String id)
AnnotatedType
that may be used to read the annotations of the given class or interface
as defined during container initialization.
T
- the class or interfacetype
- the Class
objectid
- the type identifier. If null, the fully qualifier class name of type is used
AnnotatedType
<T> Iterable<AnnotatedType<T>> getAnnotatedTypes(Class<T> type)
AnnotatedType
s that may be used to read the annotations of the given class or interface
as defined during container initialization.
T
- the class or interfacetype
- the Class
object
AnnotatedType
s<T> InjectionTarget<T> createInjectionTarget(AnnotatedType<T> type)
InjectionTarget
for the given AnnotatedType
. The container ignores the annotations and types
declared by the elements of the actual Java class and uses the metadata provided via the Annotated
interface
instead.
T
- the typetype
- the AnnotatedType
IllegalArgumentException
- if there is a definition error associated with any injection point of the type<X> Producer<?> createProducer(AnnotatedField<? super X> field, Bean<X> declaringBean)
Producer
for the given AnnotatedField
. The container ignores the annotations and types
declared by the elements of the actual Java field and uses the metadata provided via the Annotated
interface
instead.
X
- the bean class of the bean declaring the producer fieldfield
- the AnnotatedField
declaringBean
- the bean declaring the producer field, used to obtain the contextual instance which receives the
producer field access. May be null if the producer field is a static field.
IllegalArgumentException
- if there is a definition error associated with the producer field<X> Producer<?> createProducer(AnnotatedMethod<? super X> method, Bean<X> declaringBean)
Producer
for the given AnnotatedKetuod
. The container ignores the annotations and types
declared by the elements of the actual Java method and uses the metadata provided via the Annotated
interface
instead.
X
- the bean class of the bean declaring the producer methodmethod
- the AnnotatedMethod
declaringBean
- the bean declaring the producer method used to obtain the contextual instance which receives the
producer method invocation. May be null if the producer method is a static method.
IllegalArgumentException
- if there is a definition error associated with the producer method<T> BeanAttributes<T> createBeanAttributes(AnnotatedType<T> type)
BeanAttributes
for the given AnnotatedType
. The container ignores the annotations and types
declared by the elements of the actual Java class and uses the metadata provided via the Annotated
interface
instead.
T
- the typetype
- the AnnotatedType
InjectionTarget
BeanAttributes<?> createBeanAttributes(AnnotatedMember<?> type)
BeanAttributes
for the given AnnotatedType
. The container ignores the annotations and types
declared by the elements of the actual Java class and uses the metadata provided via the Annotated
interface
instead.
T
- the typetype
- the AnnotatedType
InjectionTarget
<T> Bean<T> createBean(BeanAttributes<T> attributes, Class<T> beanClass, InjectionTarget<T> injectionTarget)
Bean
for the given BeanAttributes
, bean class and InjectionTarget
.
T
- the typeattributes
- a BeanAttributes
which determines the bean types, qualifiers, scope, name and stereotypes of
the returned Bean
, and the return values of BeanAttributes.isAlternative()
and BeanAttributes.isNullable()
beanClass
- a class, which determines the return value of Bean#getClass()
injectionTarget
- an InjectionTarget
, which is used to create and destroy instances of the bean, to perform
dependency injection and lifecycle callbacks, and which determines the return value of
Bean.getInjectionPoints()
Bean
<T> Bean<T> createBean(BeanAttributes<T> attributes, Class<?> beanClass, Producer<T> producer)
Bean
for the given BeanAttributes
, bean class and Producer
.
T
- the typeattributes
- a BeanAttributes
which determines the bean types, qualifiers, scope, name and stereotypes of
the returned Bean
, and the return values of BeanAttributes.isAlternative()
and BeanAttributes.isNullable()
beanClass
- a class, which determines the return value of Bean#getClass()
producer
- a Producer, which is used to create and destroy instances of the bean, and which determines the return
value of Bean.getInjectionPoints()
Bean
InjectionPoint createInjectionPoint(AnnotatedField<?> field)
InjectionPoint
for the given AnnotatedField
.
field
- the AnnotatedField
defining the injection point
InjectionPoint
IllegalArgumentException
- if there is a definition error associated with the injection pointInjectionPoint createInjectionPoint(AnnotatedParameter<?> parameter)
InjectionPoint
for the given AnnotatedParameter
.
parameter
- the AnnotatedParameter
defining the injection point
InjectionPoint
IllegalArgumentException
- if there is a definition error associated with the injection point<T extends Extension> T getExtension(Class<T> extensionClass)
META-INF/services
.
T
- the type of the extensionextensionClass
- the type of the extension class
IllegalArgumentException
- if the container has no instance of the given class
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |