Package org.apache.myfaces.lifecycle
Class LifecycleImpl
- java.lang.Object
-
- jakarta.faces.lifecycle.Lifecycle
-
- org.apache.myfaces.lifecycle.LifecycleImpl
-
public class LifecycleImpl extends Lifecycle
Implements the lifecycle as described in Spec. 1.0 PFD Chapter 2- Version:
- $Revision$ $Date$
- Author:
- Manfred Geiler (latest modification by $Author$), Nikolay Petrov
-
-
Field Summary
Fields Modifier and Type Field Description static String
FIRST_REQUEST_PROCESSED_PARAM
Boolean.TRUE is stored under this key in the application map if the first request has been processed.
-
Constructor Summary
Constructors Constructor Description LifecycleImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addPhaseListener(PhaseListener phaseListener)
void
attachWindow(FacesContext facesContext)
void
execute(FacesContext facesContext)
protected ClientWindowFactory
getClientWindowFactory()
PhaseListener[]
getPhaseListeners()
void
removePhaseListener(PhaseListener phaseListener)
void
render(FacesContext facesContext)
-
-
-
Field Detail
-
FIRST_REQUEST_PROCESSED_PARAM
public static final String FIRST_REQUEST_PROCESSED_PARAM
Boolean.TRUE is stored under this key in the application map if the first request has been processed.- See Also:
- Constant Field Values
-
-
Method Detail
-
attachWindow
public void attachWindow(FacesContext facesContext)
- Overrides:
attachWindow
in classLifecycle
-
getClientWindowFactory
protected ClientWindowFactory getClientWindowFactory()
-
execute
public void execute(FacesContext facesContext) throws FacesException
- Specified by:
execute
in classLifecycle
- Throws:
FacesException
-
render
public void render(FacesContext facesContext) throws FacesException
- Specified by:
render
in classLifecycle
- Throws:
FacesException
-
addPhaseListener
public void addPhaseListener(PhaseListener phaseListener)
- Specified by:
addPhaseListener
in classLifecycle
-
removePhaseListener
public void removePhaseListener(PhaseListener phaseListener)
- Specified by:
removePhaseListener
in classLifecycle
-
getPhaseListeners
public PhaseListener[] getPhaseListeners()
- Specified by:
getPhaseListeners
in classLifecycle
-
-