Uses of Class
jakarta.faces.lifecycle.Lifecycle
Package | Description |
---|---|
com.sun.faces.context | |
com.sun.faces.lifecycle | |
jakarta.faces.context | |
jakarta.faces.event | |
jakarta.faces.lifecycle |
-
Uses of Lifecycle in com.sun.faces.context
Methods in com.sun.faces.context with parameters of type Lifecycle Modifier and Type Method Description FacesContext
FacesContextFactoryImpl. getFacesContext(Object sc, Object request, Object response, Lifecycle lifecycle)
FacesContext
InjectionFacesContextFactory. getFacesContext(Object context, Object request, Object response, Lifecycle lifecycle)
Constructors in com.sun.faces.context with parameters of type Lifecycle Constructor Description FacesContextImpl(ExternalContext ec, Lifecycle lifecycle)
-
Uses of Lifecycle in com.sun.faces.lifecycle
Subclasses of Lifecycle in com.sun.faces.lifecycle Modifier and Type Class Description class
LifecycleImpl
LifecycleImpl is the stock implementation of the standard Lifecycle in the JavaServer Faces RI.Fields in com.sun.faces.lifecycle with type parameters of type Lifecycle Modifier and Type Field Description protected ConcurrentHashMap<String,Lifecycle>
LifecycleFactoryImpl. lifecycleMap
Methods in com.sun.faces.lifecycle that return Lifecycle Modifier and Type Method Description Lifecycle
LifecycleFactoryImpl. getLifecycle(String lifecycleId)
Methods in com.sun.faces.lifecycle with parameters of type Lifecycle Modifier and Type Method Description void
LifecycleFactoryImpl. addLifecycle(String lifecycleId, Lifecycle lifecycle)
void
Phase. doPhase(FacesContext context, Lifecycle lifecycle, ListIterator<PhaseListener> listeners)
Performs PhaseListener processing and invokes the execute method of the Phase.void
RestoreViewPhase. doPhase(FacesContext context, Lifecycle lifecycle, ListIterator<PhaseListener> listeners)
-
Uses of Lifecycle in jakarta.faces.context
Methods in jakarta.faces.context with parameters of type Lifecycle Modifier and Type Method Description abstract FacesContext
FacesContextFactory. getFacesContext(Object context, Object request, Object response, Lifecycle lifecycle)
Create (if needed) and return aFacesContext
instance that is initialized for the processing of the specified request and response objects, utilizing the specifiedLifecycle
instance, for this web application. -
Uses of Lifecycle in jakarta.faces.event
Constructors in jakarta.faces.event with parameters of type Lifecycle Constructor Description PhaseEvent(FacesContext context, PhaseId phaseId, Lifecycle lifecycle)
Construct a new event object from the specified parameters. -
Uses of Lifecycle in jakarta.faces.lifecycle
Subclasses of Lifecycle in jakarta.faces.lifecycle Modifier and Type Class Description class
LifecycleWrapper
Methods in jakarta.faces.lifecycle that return Lifecycle Modifier and Type Method Description abstract Lifecycle
LifecycleFactory. getLifecycle(String lifecycleId)
Create (if needed) and return aLifecycle
instance for the specified lifecycle identifier.Lifecycle
LifecycleWrapper. getWrapped()
Methods in jakarta.faces.lifecycle with parameters of type Lifecycle Modifier and Type Method Description abstract void
LifecycleFactory. addLifecycle(String lifecycleId, Lifecycle lifecycle)
Register a newLifecycle
instance, associated with the specifiedlifecycleId
, to be supported by thisLifecycleFactory
.Constructors in jakarta.faces.lifecycle with parameters of type Lifecycle Constructor Description LifecycleWrapper(Lifecycle wrapped)
If this lifecycle has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.