|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface AfterTypeDiscovery
This event type is thrown by the container after type discovery is complete. If any observer method of the
AfterTypeDiscovery
event throws an exception, the exception is treated as a definition error by the container.
Any observer of this event is permitted to add classes to, or remove classes from, the list of alternatives, list of interceptors or list of decorators. The container will use the final values of these lists, after all observers have been called, to determine the enabled alternatives, interceptors, and decorators for application.
Method Summary | |
---|---|
void |
addAnnotatedType(AnnotatedType<?> type,
java.lang.String id)
Adds a given AnnotatedType to the set of types which will be scanned during bean
discovery. |
java.util.List<java.lang.Class<?>> |
getAlternatives()
|
java.util.List<java.lang.Class<?>> |
getDecorators()
|
java.util.List<java.lang.Class<?>> |
getInterceptors()
|
Method Detail |
---|
java.util.List<java.lang.Class<?>> getAlternatives()
java.util.List<java.lang.Class<?>> getInterceptors()
java.util.List<java.lang.Class<?>> getDecorators()
void addAnnotatedType(AnnotatedType<?> type, java.lang.String id)
Adds a given AnnotatedType
to the set of types which will be scanned during bean
discovery.
This method allows multiple annotated types, based on the same underlying type, to be defined. AnnotatedType
s
discovered by the container use the fully qualified class name of AnnotatedType.getJavaClass()
to identify the
type.
AfterBeanDiscovery.getAnnotatedType(Class, String)
and AfterBeanDiscovery.getAnnotatedTypes(Class)
allows
annotated types to be obtained by identifier.
type
- The AnnotatedType
to add for later scanning
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |