| Package | Description |
|---|---|
| javax.faces.component |
Fundamental APIs for user
interface components.
|
| javax.faces.context |
Classes and interfaces
defining per-request state information.
|
| javax.faces.event |
Interfaces describing events and event
listeners, and concrete event implementation classes.
|
| javax.faces.lifecycle |
Classes and interfaces defining lifecycle management for the
JavaServer Faces implementation.
|
| javax.faces.webapp |
Classes required for integration of
JavaServer Faces into web applications, including a standard servlet,
base classes for JSP custom component
tags, and concrete tag implementations for core tags.
|
| Modifier and Type | Field and Description |
|---|---|
private static Lifecycle |
UIViewRoot.lifecycle |
| Modifier and Type | Method and Description |
|---|---|
abstract FacesContext |
FacesContextFactory.getFacesContext(java.lang.Object context,
java.lang.Object request,
java.lang.Object response,
Lifecycle lifecycle)
Create (if needed)
and return a
FacesContext instance that is initialized
for the processing of the specified request and response objects,
utilizing the specified Lifecycle instance, for this web
application. |
| Constructor and Description |
|---|
PhaseEvent(FacesContext context,
PhaseId phaseId,
Lifecycle lifecycle)
Construct a new event object from the specified parameters.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Lifecycle |
LifecycleFactory.getLifecycle(java.lang.String lifecycleId)
Create (if needed) and return a
Lifecycle instance
for the specified lifecycle identifier. |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
LifecycleFactory.addLifecycle(java.lang.String lifecycleId,
Lifecycle lifecycle)
Register a new
Lifecycle instance, associated with
the specified lifecycleId, to be supported by this
LifecycleFactory. |
| Modifier and Type | Field and Description |
|---|---|
private Lifecycle |
FacesServlet.lifecycle
The
Lifecycle instance to use for request processing. |