By implementing this class, an object indicates that it is a listener for one or more kinds of SystemEvent
s.
The exact type of event that will cause the implementing class's processEvent
method to be called is
indicated by the facesEventClass
argument passed when the listener is installed using
jakarta.faces.application.Application#subscribeToEvent
.
Modifier and Type | Method and Description |
---|---|
public boolean | Returns: the value as specified abovethe source that is inquiring about the appropriateness of sending an event to this listener instance. source)
This method must return |
public void | processEvent(SystemEvent
the event)SystemEvent instance that is being processed.
When called, the listener can assume that any guarantees given in the javadoc for the specific |
isListenerForSource | back to summary |
---|---|
public boolean isListenerForSource(Object source)
This method must return
|
processEvent | back to summary |
---|---|
public void processEvent(SystemEvent event) throws AbortProcessingException
When called, the listener can assume that any guarantees given in the javadoc for the specific
|