Package com.sun.faces.application
Class ActionListenerImpl
- java.lang.Object
-
- com.sun.faces.application.ActionListenerImpl
-
- All Implemented Interfaces:
ActionListener,FacesListener,EventListener
public class ActionListenerImpl extends Object implements ActionListener
This action listener implementation processes action events during the Apply Request Values or Invoke Application phase of the request processing lifecycle (depending upon theimmediateproperty of theActionSourcethat 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 Constructor Description ActionListenerImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocessAction(ActionEvent event)Invoked when the action described by the specifiedActionEventoccurs.
-
-
-
Method Detail
-
processAction
public void processAction(ActionEvent event)
Description copied from interface:ActionListenerInvoked when the action described by the specified
ActionEventoccurs.- Specified by:
processActionin interfaceActionListener- Parameters:
event- TheActionEventthat has occurred
-
-