Class ViewHandlerWrapper
- All Implemented Interfaces:
FacesWrapper<ViewHandler>
Provides a simple implementation of ViewHandler
that can be
subclassed by developers wishing to provide specialized behavior to an existing ViewHandler
instance. The
default implementation of all methods is to call through to the wrapped ViewHandler
.
Usage: extend this class and push the implementation being wrapped to the constructor and use getWrapped()
to
access the instance being wrapped.
- Since:
- 1.2
-
Field Summary
Fields inherited from class jakarta.faces.application.ViewHandler
CHARACTER_ENCODING_KEY, DEFAULT_FACELETS_SUFFIX, DEFAULT_SUFFIX, DEFAULT_SUFFIX_PARAM_NAME, FACELETS_BUFFER_SIZE_PARAM_NAME, FACELETS_DECORATORS_PARAM_NAME, FACELETS_LIBRARIES_PARAM_NAME, FACELETS_REFRESH_PERIOD_PARAM_NAME, FACELETS_SKIP_COMMENTS_PARAM_NAME, FACELETS_SUFFIX_PARAM_NAME, FACELETS_VIEW_MAPPINGS_PARAM_NAME
-
Constructor Summary
ConstructorDescriptionDeprecated.Use the other constructor taking the implementation being wrapped.ViewHandlerWrapper
(ViewHandler wrapped) If this view handler has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addProtectedView
(String urlPattern) The default behavior of this method is to callViewHandler.addProtectedView(java.lang.String)
on the wrappedViewHandler
object.calculateCharacterEncoding
(FacesContext context) The default behavior of this method is to callViewHandler.calculateCharacterEncoding(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.calculateLocale
(FacesContext context) The default behavior of this method is to callViewHandler.calculateLocale(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.calculateRenderKitId
(FacesContext context) The default behavior of this method is to callViewHandler.calculateRenderKitId(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.createView
(FacesContext context, String viewId) The default behavior of this method is to callViewHandler.createView(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.deriveLogicalViewId
(FacesContext context, String requestViewId) The default behavior of this method is to callViewHandler.deriveLogicalViewId(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.deriveViewId
(FacesContext context, String requestViewId) The default behavior of this method is to callViewHandler.deriveViewId(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.getActionURL
(FacesContext context, String viewId) The default behavior of this method is to callViewHandler.getActionURL(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.getBookmarkableURL
(FacesContext context, String viewId, Map<String, List<String>> parameters, boolean includeViewParams) The default behavior of this method is to callViewHandler.getBookmarkableURL(jakarta.faces.context.FacesContext, String, java.util.Map, boolean)
on the wrappedViewHandler
object.The default behavior of this method is to callViewHandler.getProtectedViewsUnmodifiable()
on the wrappedViewHandler
object.getRedirectURL
(FacesContext context, String viewId, Map<String, List<String>> parameters, boolean includeViewParams) The default behavior of this method is to callViewHandler.getRedirectURL(jakarta.faces.context.FacesContext, String, java.util.Map, boolean)
on the wrappedViewHandler
object.getResourceURL
(FacesContext context, String path) The default behavior of this method is to callViewHandler.getResourceURL(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.getViewDeclarationLanguage
(FacesContext context, String viewId) The default behavior of this method is to callViewHandler.getViewDeclarationLanguage(jakarta.faces.context.FacesContext, java.lang.String)
on the wrappedViewHandler
object.getViews
(FacesContext context, String path, int maxDepth, ViewVisitOption... options) The default behavior of this method is to callViewHandler.getViews(FacesContext, String, int, ViewVisitOption...)
on the wrappedViewHandler
object.getViews
(FacesContext context, String path, ViewVisitOption... options) The default behavior of this method is to callViewHandler.getViews(FacesContext, String, ViewVisitOption...)
on the wrappedViewHandler
object.getWebsocketURL
(FacesContext context, String channel) The default behavior of this method is to callViewHandler.getWebsocketURL(FacesContext, String)
on the wrappedViewHandler
object.A class that implements this interface uses this method to return an instance of the class being wrapped.void
initView
(FacesContext context) The default behavior of this method is to callViewHandler.initView(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.boolean
removeProtectedView
(String urlPattern) The default behavior of this method is to callViewHandler.removeProtectedView(java.lang.String)
on the wrappedViewHandler
object.void
renderView
(FacesContext context, UIViewRoot viewToRender) The default behavior of this method is to callViewHandler.renderView(jakarta.faces.context.FacesContext, jakarta.faces.component.UIViewRoot)
on the wrappedViewHandler
object.restoreView
(FacesContext context, String viewId) The default behavior of this method is to callViewHandler.restoreView(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.void
writeState
(FacesContext context) The default behavior of this method is to callViewHandler.writeState(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.
-
Constructor Details
-
ViewHandlerWrapper
If this view handler has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. The
getWrapped()
will then return the implementation being wrapped.- Parameters:
wrapped
- The implementation being wrapped.- Since:
- 2.3
-
ViewHandlerWrapper
Deprecated.Use the other constructor taking the implementation being wrapped.
-
-
Method Details
-
getWrapped
Description copied from interface:FacesWrapper
A class that implements this interface uses this method to return an instance of the class being wrapped.
- Specified by:
getWrapped
in interfaceFacesWrapper<ViewHandler>
- Returns:
- the wrapped instance.
-
initView
The default behavior of this method is to call
ViewHandler.initView(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.- Overrides:
initView
in classViewHandler
- Parameters:
context
- the Faces context.- Throws:
FacesException
- if a problem occurs setting the encoding, such as theUnsupportedEncodingException
thrown by the underlying Jakarta Servlet or Portlet technology when the encoding is not supported.- Since:
- 1.2
- See Also:
-
restoreView
The default behavior of this method is to call
ViewHandler.restoreView(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.- Specified by:
restoreView
in classViewHandler
- Parameters:
context
-FacesContext
for the current requestviewId
- the view identifier for the current request- Returns:
- the restored view root, or null.
- Since:
- 1.2
- See Also:
-
createView
The default behavior of this method is to call
ViewHandler.createView(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.- Specified by:
createView
in classViewHandler
- Parameters:
context
- the Faces context.viewId
- the view id.- Returns:
- the viewroot.
- Since:
- 1.2
- See Also:
-
renderView
public void renderView(FacesContext context, UIViewRoot viewToRender) throws IOException, FacesException The default behavior of this method is to call
ViewHandler.renderView(jakarta.faces.context.FacesContext, jakarta.faces.component.UIViewRoot)
on the wrappedViewHandler
object.- Specified by:
renderView
in classViewHandler
- Parameters:
context
-FacesContext
for the current requestviewToRender
- the view to render- Throws:
IOException
- if an input/output error occursFacesException
- if a Jakarta Servlet error occurs- Since:
- 1.2
- See Also:
-
calculateCharacterEncoding
The default behavior of this method is to call
ViewHandler.calculateCharacterEncoding(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.- Overrides:
calculateCharacterEncoding
in classViewHandler
- Parameters:
context
- the Faces context.- Returns:
- the character encoding, or
null
- Since:
- 1.2
- See Also:
-
calculateLocale
The default behavior of this method is to call
ViewHandler.calculateLocale(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.- Specified by:
calculateLocale
in classViewHandler
- Parameters:
context
-FacesContext
for the current request- Returns:
- the locale.
- Since:
- 1.2
- See Also:
-
deriveViewId
The default behavior of this method is to call
ViewHandler.deriveViewId(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.- Overrides:
deriveViewId
in classViewHandler
- Parameters:
context
- theFacesContext
for this requestrequestViewId
- theviewId
to derive,- Returns:
- the derived view id.
- Since:
- 2.0
- See Also:
-
deriveLogicalViewId
The default behavior of this method is to call
ViewHandler.deriveLogicalViewId(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.- Overrides:
deriveLogicalViewId
in classViewHandler
- Parameters:
context
- theFacesContext
for this requestrequestViewId
- theviewId
to derive,- Returns:
- the derived logical view id.
- Since:
- 2.1
- See Also:
-
calculateRenderKitId
The default behavior of this method is to call
ViewHandler.calculateRenderKitId(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.- Specified by:
calculateRenderKitId
in classViewHandler
- Parameters:
context
-FacesContext
for the current request- Returns:
- the render kit id.
- Since:
- 1.2
- See Also:
-
getActionURL
The default behavior of this method is to call
ViewHandler.getActionURL(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.- Specified by:
getActionURL
in classViewHandler
- Parameters:
context
-FacesContext
for this requestviewId
- View identifier of the desired view- Returns:
- the action url.
- Since:
- 1.2
- See Also:
-
getProtectedViewsUnmodifiable
The default behavior of this method is to call
ViewHandler.getProtectedViewsUnmodifiable()
on the wrappedViewHandler
object.- Overrides:
getProtectedViewsUnmodifiable
in classViewHandler
- Returns:
- the unmodifiable set of protected views.
- Since:
- 2.2
- See Also:
-
addProtectedView
The default behavior of this method is to call
ViewHandler.addProtectedView(java.lang.String)
on the wrappedViewHandler
object.- Overrides:
addProtectedView
in classViewHandler
- Parameters:
urlPattern
- the url-pattern to add.- Since:
- 2.2
- See Also:
-
removeProtectedView
The default behavior of this method is to call
ViewHandler.removeProtectedView(java.lang.String)
on the wrappedViewHandler
object.- Overrides:
removeProtectedView
in classViewHandler
- Parameters:
urlPattern
- the url-pattern to remove.- Returns:
true
if in theSet
,false
otherwise.- Since:
- 2.2
- See Also:
-
getRedirectURL
public String getRedirectURL(FacesContext context, String viewId, Map<String, List<String>> parameters, boolean includeViewParams) The default behavior of this method is to call
ViewHandler.getRedirectURL(jakarta.faces.context.FacesContext, String, java.util.Map, boolean)
on the wrappedViewHandler
object.- Overrides:
getRedirectURL
in classViewHandler
- Parameters:
context
- The FacesContext processing this requestviewId
- The view identifier of the target pageparameters
- A mapping of parameter names to one or more valuesincludeViewParams
- A flag indicating whether view parameters should be encoded into this URL- Returns:
- the redirect URL.
- Since:
- 2.0
- See Also:
-
getBookmarkableURL
public String getBookmarkableURL(FacesContext context, String viewId, Map<String, List<String>> parameters, boolean includeViewParams) The default behavior of this method is to call
ViewHandler.getBookmarkableURL(jakarta.faces.context.FacesContext, String, java.util.Map, boolean)
on the wrappedViewHandler
object.- Overrides:
getBookmarkableURL
in classViewHandler
- Parameters:
context
- The FacesContext processing this requestviewId
- The view identifier of the target pageparameters
- A mapping of parameter names to one or more valuesincludeViewParams
- A flag indicating whether view parameters should be encoded into this URL- Returns:
- the bookmarkable URL.
- Since:
- 2.0
- See Also:
-
getResourceURL
The default behavior of this method is to call
ViewHandler.getResourceURL(jakarta.faces.context.FacesContext, String)
on the wrappedViewHandler
object.- Specified by:
getResourceURL
in classViewHandler
- Parameters:
context
-FacesContext
for the current requestpath
- Resource path to convert to a URL- Returns:
- the resource URL.
- Since:
- 1.2
- See Also:
-
getWebsocketURL
The default behavior of this method is to call
ViewHandler.getWebsocketURL(FacesContext, String)
on the wrappedViewHandler
object.- Specified by:
getWebsocketURL
in classViewHandler
- Parameters:
context
-FacesContext
for the current request.channel
- The channel name of the websocket.- Returns:
- the websocket URL.
- Since:
- 2.3
- See Also:
-
getViewDeclarationLanguage
The default behavior of this method is to call
ViewHandler.getViewDeclarationLanguage(jakarta.faces.context.FacesContext, java.lang.String)
on the wrappedViewHandler
object.- Overrides:
getViewDeclarationLanguage
in classViewHandler
- Parameters:
context
- theFacesContext
for this request.viewId
- the logical view id, as returned fromViewHandler.deriveLogicalViewId(jakarta.faces.context.FacesContext, java.lang.String)
for which theViewDeclarationLanguage
should be returned.- Returns:
- the ViewDeclarationLanguage, or null.
- Since:
- 2.0
-
getViews
The default behavior of this method is to call
ViewHandler.getViews(FacesContext, String, ViewVisitOption...)
on the wrappedViewHandler
object.- Overrides:
getViews
in classViewHandler
- Parameters:
context
- TheFacesContext
for this request.path
- The initial path from which to start looking for view ids.options
- The options to influence the traversal. SeeViewVisitOption
for details on those.- Returns:
- the
Stream
of view ids - Since:
- 2.3
-
getViews
public Stream<String> getViews(FacesContext context, String path, int maxDepth, ViewVisitOption... options) The default behavior of this method is to call
ViewHandler.getViews(FacesContext, String, int, ViewVisitOption...)
on the wrappedViewHandler
object.- Overrides:
getViews
in classViewHandler
- Parameters:
context
- TheFacesContext
for this request.path
- The initial path from which to start looking for view ids.maxDepth
- The absolute maximum depth of nested directories to visit counted from the root (/
).options
- The options to influence the traversal. SeeViewVisitOption
for details on those.- Returns:
- the
Stream
of view ids - Since:
- 2.3
-
writeState
The default behavior of this method is to call
ViewHandler.writeState(jakarta.faces.context.FacesContext)
on the wrappedViewHandler
object.- Specified by:
writeState
in classViewHandler
- Parameters:
context
-FacesContext
for the current request- Throws:
IOException
- if an input/output error occurs- Since:
- 1.2
- See Also:
-