Package javax.enterprise.inject.spi
Interface EventMetadata
public interface EventMetadata
Provides access to metadata about an observed event payload. The metadata may be for events fired with either of
Event
or BeanManager.fireEvent(Object, Annotation...)
.
EventMetadata
may only be injected into an observer method. For example:
public void afterLogin(@Observes LoggedInEvent event, EventMetadata eventMetadata) { ... }
- Since:
- 1.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGet theInjectionPoint
representing the injectedEvent
instance which fired the event, ornull
if it was fired fromBeanManager.fireEvent(Object, Annotation...)
;Get the qualifiers for which event payload was fired.getType()
Get the type representing runtime class of the event object with type variables resolved.
-
Method Details
-
getQualifiers
Set<Annotation> getQualifiers()Get the qualifiers for which event payload was fired. -
getInjectionPoint
InjectionPoint getInjectionPoint()Get theInjectionPoint
representing the injectedEvent
instance which fired the event, ornull
if it was fired fromBeanManager.fireEvent(Object, Annotation...)
; -
getType
Type getType()Get the type representing runtime class of the event object with type variables resolved.
-