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) { ... }
Observes| Modifier and Type | Method and Description |
|---|---|
InjectionPoint |
getInjectionPoint()
Get the
InjectionPoint from which the event fired, or null if it was fired from
BeanManager.fireEvent(Object, Annotation...); |
Set<Annotation> |
getQualifiers()
Get the qualifiers for which event payload was fired.
|
Type |
getType()
Returns the resolved event
Type. |
Set<Annotation> getQualifiers()
InjectionPoint getInjectionPoint()
InjectionPoint from which the event fired, or null if it was fired from
BeanManager.fireEvent(Object, Annotation...);Copyright © 2008-2013 JBoss by Red Hat, Inc.. All Rights Reserved.