Uses of Class
jakarta.faces.application.StateManager
Package | Description |
---|---|
com.sun.faces.application | |
com.sun.faces.application.applicationimpl | |
com.sun.faces.util | |
jakarta.faces.application |
-
Uses of StateManager in com.sun.faces.application
Subclasses of StateManager in com.sun.faces.application Modifier and Type Class Description class
StateManagerImpl
AStateManager
implementation to meet the requirements of the specification.Methods in com.sun.faces.application that return StateManager Modifier and Type Method Description StateManager
ApplicationImpl. getStateManager()
Methods in com.sun.faces.application with parameters of type StateManager Modifier and Type Method Description void
ApplicationImpl. setStateManager(StateManager stateManager)
-
Uses of StateManager in com.sun.faces.application.applicationimpl
Methods in com.sun.faces.application.applicationimpl that return StateManager Modifier and Type Method Description StateManager
Singletons. getStateManager()
Methods in com.sun.faces.application.applicationimpl with parameters of type StateManager Modifier and Type Method Description void
Singletons. setStateManager(StateManager stateManager)
-
Uses of StateManager in com.sun.faces.util
Methods in com.sun.faces.util that return StateManager Modifier and Type Method Description static StateManager
Util. getStateManager(FacesContext context)
-
Uses of StateManager in jakarta.faces.application
Subclasses of StateManager in jakarta.faces.application Modifier and Type Class Description class
StateManagerWrapper
Provides a simple implementation ofStateManager
that can be subclassed by developers wishing to provide specialized behavior to an existingStateManager
instance.Methods in jakarta.faces.application that return StateManager Modifier and Type Method Description abstract StateManager
Application. getStateManager()
Return theStateManager
instance that will be utilized during the Restore View and Render Response phases of the request processing lifecycle.StateManager
ApplicationWrapper. getStateManager()
The default behavior of this method is to callApplication.getStateManager()
on the wrappedApplication
object.StateManager
StateManagerWrapper. getWrapped()
Methods in jakarta.faces.application with parameters of type StateManager Modifier and Type Method Description abstract void
Application. setStateManager(StateManager manager)
Set theStateManager
instance that will be utilized during the Restore View and Render Response phases of the request processing lifecycle.void
ApplicationWrapper. setStateManager(StateManager manager)
The default behavior of this method is to callApplication.setStateManager(StateManager)
on the wrappedApplication
object.Constructors in jakarta.faces.application with parameters of type StateManager Constructor Description StateManagerWrapper(StateManager wrapped)
If this state manager has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.