Uses of Class
jakarta.faces.application.ViewHandler
-
Packages that use ViewHandler Package Description jakarta.faces.application -
-
Uses of ViewHandler in jakarta.faces.application
Subclasses of ViewHandler in jakarta.faces.application Modifier and Type Class Description class
ViewHandlerWrapper
Provides a simple implementation ofViewHandler
that can be subclassed by developers wishing to provide specialized behavior to an existingViewHandler
instance.Methods in jakarta.faces.application that return ViewHandler Modifier and Type Method Description abstract ViewHandler
Application. getViewHandler()
Return theViewHandler
instance that will be utilized during the Restore View and Render Response phases of the request processing lifecycle.ViewHandler
ApplicationWrapper. getViewHandler()
The default behavior of this method is to callApplication.getViewHandler()
on the wrappedApplication
object.ViewHandler
ViewHandlerWrapper. getWrapped()
Methods in jakarta.faces.application with parameters of type ViewHandler Modifier and Type Method Description abstract void
Application. setViewHandler(ViewHandler handler)
Set theViewHandler
instance that will be utilized during the Restore View and Render Response phases of the request processing lifecycle.void
ApplicationWrapper. setViewHandler(ViewHandler handler)
The default behavior of this method is to callApplication.setViewHandler(ViewHandler)
on the wrappedApplication
object.Constructors in jakarta.faces.application with parameters of type ViewHandler Constructor Description ViewHandlerWrapper(ViewHandler wrapped)
If this view handler has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.
-