Package com.sun.faces.application
Class ActionListenerImpl
java.lang.Object
com.sun.faces.application.ActionListenerImpl
- All Implemented Interfaces:
ActionListener
,FacesListener
,EventListener
This action listener implementation processes action events during the Apply Request Values or Invoke
Application phase of the request processing lifecycle (depending upon the
immediate
property of the
ActionSource
that queued this event.
It invokes the specified application action method, and uses the logical outcome value to invoke the default navigation handler mechanism to determine which view should be displayed next.
-
Field Summary
Fields inherited from interface jakarta.faces.event.ActionListener
TO_FLOW_DOCUMENT_ID_ATTR_NAME
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
processAction
(ActionEvent event) Invoked when the action described by the specifiedActionEvent
occurs.
-
Constructor Details
-
ActionListenerImpl
public ActionListenerImpl()
-
-
Method Details
-
processAction
Description copied from interface:ActionListener
Invoked when the action described by the specified
ActionEvent
occurs.- Specified by:
processAction
in interfaceActionListener
- Parameters:
event
- TheActionEvent
that has occurred
-