Class FacesContextWrapper
- All Implemented Interfaces:
FacesWrapper<FacesContext>
Provides a simple
implementation of FacesContext
that can be subclassed by
developers wishing to provide specialized behavior to an existing
FacesContext
instance. The default implementation of all
methods is to call through to the wrapped FacesContext
instance.
Usage: extend this class and override getWrapped()
to
return the instance being wrapping.
- Since:
- 2.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addMessage
(String clientId, FacesMessage message) The default behavior of this method is to callFacesContext.addMessage(String, FacesMessage)
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getApplication()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getAttributes()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getClientIdsWithMessages()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getCurrentPhaseId()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getELContext()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getExceptionHandler()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getExternalContext()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getMaximumSeverity()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getMessageList()
on the wrappedFacesContext
object.getMessageList
(String clientId) The default behavior of this method is to callFacesContext.getMessageList(String)
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getMessages()
on the wrappedFacesContext
object.getMessages
(String clientId) The default behavior of this method is to callFacesContext.getMessages(String)
on the wrappedFacesContext
object.char
The default behavior of this method is to callFacesContext.getNamingContainerSeparatorChar()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getPartialViewContext()
()} on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getRenderKit()
on the wrappedFacesContext
object.boolean
The default behavior of this method is to callFacesContext.getRenderResponse()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getResourceLibraryContracts()
on the wrappedFacesContext
object.boolean
The default behavior of this method is to callFacesContext.getResponseComplete()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getResponseStream()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getResponseWriter()
on the wrappedFacesContext
object.The default behavior of this method is to callFacesContext.getViewRoot()
on the wrappedFacesContext
object.abstract FacesContext
A class that implements this interface uses this method to return an instance of the class being wrapped.boolean
The default behavior of this method is to callFacesContext.isPostback()
on the wrappedFacesContext
object.boolean
The default behavior of this method is to callFacesContext.isProcessingEvents()
on the wrappedFacesContext
object.boolean
isProjectStage
(ProjectStage stage) The default behavior of this method is to callFacesContext.isProjectStage(javax.faces.application.ProjectStage)
on the wrappedFacesContext
object.boolean
The default behavior of this method is to callFacesContext.isReleased()
on the wrappedFacesContext
object.boolean
The default behavior of this method is to callFacesContext.isValidationFailed()
on the wrappedFacesContext
object.void
release()
The default behavior of this method is to callFacesContext.release()
on the wrappedFacesContext
object.void
The default behavior of this method is to callFacesContext.renderResponse()
on the wrappedFacesContext
object.void
The default behavior of this method is to callFacesContext.responseComplete()
on the wrappedFacesContext
object.void
setCurrentPhaseId
(PhaseId currentPhaseId) The default behavior of this method is to callFacesContext.setCurrentPhaseId(PhaseId)
on the wrappedFacesContext
object.void
setExceptionHandler
(ExceptionHandler exceptionHandler) The default behavior of this method is to callFacesContext.setExceptionHandler(ExceptionHandler)
on the wrappedFacesContext
object.void
setProcessingEvents
(boolean processingEvents) The default behavior of this method is to callFacesContext.setProcessingEvents(boolean)
on the wrappedFacesContext
object.void
setResourceLibraryContracts
(List<String> contracts) The default behavior of this method is to callFacesContext.setResourceLibraryContracts(java.util.List<java.lang.String>)
on the wrappedFacesContext
object.void
setResponseStream
(ResponseStream responseStream) The default behavior of this method is to callFacesContext.setResponseStream(ResponseStream)
on the wrappedFacesContext
object.void
setResponseWriter
(ResponseWriter responseWriter) The default behavior of this method is to callFacesContext.setResponseWriter(ResponseWriter)
on the wrappedFacesContext
object.void
setViewRoot
(UIViewRoot root) The default behavior of this method is to callFacesContext.setViewRoot(UIViewRoot)
on the wrappedFacesContext
object.void
The default behavior of this method is to callFacesContext.validationFailed()
on the wrappedFacesContext
object.Methods inherited from class javax.faces.context.FacesContext
getCurrentInstance, setCurrentInstance
-
Constructor Details
-
FacesContextWrapper
public FacesContextWrapper()
-
-
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<FacesContext>
- Returns:
- the wrapped
FacesContext
instance - See Also:
-
getApplication
The default behavior of this method is to call
FacesContext.getApplication()
on the wrappedFacesContext
object.- Specified by:
getApplication
in classFacesContext
- See Also:
-
getClientIdsWithMessages
The default behavior of this method is to call
FacesContext.getClientIdsWithMessages()
on the wrappedFacesContext
object.- Specified by:
getClientIdsWithMessages
in classFacesContext
- See Also:
-
getExternalContext
The default behavior of this method is to call
FacesContext.getExternalContext()
on the wrappedFacesContext
object.- Specified by:
getExternalContext
in classFacesContext
- See Also:
-
getMaximumSeverity
The default behavior of this method is to call
FacesContext.getMaximumSeverity()
on the wrappedFacesContext
object.- Specified by:
getMaximumSeverity
in classFacesContext
- See Also:
-
getMessages
The default behavior of this method is to call
FacesContext.getMessages()
on the wrappedFacesContext
object.- Specified by:
getMessages
in classFacesContext
- See Also:
-
getMessages
The default behavior of this method is to call
FacesContext.getMessages(String)
on the wrappedFacesContext
object.- Specified by:
getMessages
in classFacesContext
- Parameters:
clientId
- The client identifier for which messages are requested, ornull
for messages not associated with any client identifier- See Also:
-
getRenderKit
The default behavior of this method is to call
FacesContext.getRenderKit()
on the wrappedFacesContext
object.- Specified by:
getRenderKit
in classFacesContext
- See Also:
-
getRenderResponse
public boolean getRenderResponse()The default behavior of this method is to call
FacesContext.getRenderResponse()
on the wrappedFacesContext
object.- Specified by:
getRenderResponse
in classFacesContext
- See Also:
-
getResourceLibraryContracts
The default behavior of this method is to call
FacesContext.getResourceLibraryContracts()
on the wrappedFacesContext
object.- Overrides:
getResourceLibraryContracts
in classFacesContext
- See Also:
-
setResourceLibraryContracts
The default behavior of this method is to call
FacesContext.setResourceLibraryContracts(java.util.List<java.lang.String>)
on the wrappedFacesContext
object.- Overrides:
setResourceLibraryContracts
in classFacesContext
- Parameters:
contracts
- The new contracts to be returned, as an immutableList
. from a subsequent call toFacesContext.getResourceLibraryContracts()
.- See Also:
-
getResponseComplete
public boolean getResponseComplete()The default behavior of this method is to call
FacesContext.getResponseComplete()
on the wrappedFacesContext
object.- Specified by:
getResponseComplete
in classFacesContext
- See Also:
-
getResponseStream
The default behavior of this method is to call
FacesContext.getResponseStream()
on the wrappedFacesContext
object.- Specified by:
getResponseStream
in classFacesContext
- See Also:
-
setResponseStream
The default behavior of this method is to call
FacesContext.setResponseStream(ResponseStream)
on the wrappedFacesContext
object.- Specified by:
setResponseStream
in classFacesContext
- Parameters:
responseStream
- The new ResponseStream for this response- See Also:
-
getResponseWriter
The default behavior of this method is to call
FacesContext.getResponseWriter()
on the wrappedFacesContext
object.- Specified by:
getResponseWriter
in classFacesContext
- See Also:
-
setResponseWriter
The default behavior of this method is to call
FacesContext.setResponseWriter(ResponseWriter)
on the wrappedFacesContext
object.- Specified by:
setResponseWriter
in classFacesContext
- Parameters:
responseWriter
- The new ResponseWriter for this response- See Also:
-
getViewRoot
The default behavior of this method is to call
FacesContext.getViewRoot()
on the wrappedFacesContext
object.- Specified by:
getViewRoot
in classFacesContext
- See Also:
-
setViewRoot
The default behavior of this method is to call
FacesContext.setViewRoot(UIViewRoot)
on the wrappedFacesContext
object.- Specified by:
setViewRoot
in classFacesContext
- Parameters:
root
- The new componentUIViewRoot
component- See Also:
-
addMessage
The default behavior of this method is to call
FacesContext.addMessage(String, FacesMessage)
on the wrappedFacesContext
object.- Specified by:
addMessage
in classFacesContext
- Parameters:
clientId
- The client identifier with which this message is associated (if any)message
- The message to be appended- See Also:
-
isReleased
public boolean isReleased()The default behavior of this method is to call
FacesContext.isReleased()
on the wrappedFacesContext
object.- Overrides:
isReleased
in classFacesContext
- Returns:
true
if the resources have been released.- Since:
- 2.1
- See Also:
-
release
public void release()The default behavior of this method is to call
FacesContext.release()
on the wrappedFacesContext
object.- Specified by:
release
in classFacesContext
- See Also:
-
renderResponse
public void renderResponse()The default behavior of this method is to call
FacesContext.renderResponse()
on the wrappedFacesContext
object.- Specified by:
renderResponse
in classFacesContext
- See Also:
-
responseComplete
public void responseComplete()The default behavior of this method is to call
FacesContext.responseComplete()
on the wrappedFacesContext
object.- Specified by:
responseComplete
in classFacesContext
- See Also:
-
getAttributes
The default behavior of this method is to call
FacesContext.getAttributes()
on the wrappedFacesContext
object.- Overrides:
getAttributes
in classFacesContext
- See Also:
-
getNamingContainerSeparatorChar
public char getNamingContainerSeparatorChar()The default behavior of this method is to call
FacesContext.getNamingContainerSeparatorChar()
on the wrappedFacesContext
object.- Overrides:
getNamingContainerSeparatorChar
in classFacesContext
- See Also:
-
getPartialViewContext
The default behavior of this method is to call
FacesContext.getPartialViewContext()
()} on the wrappedFacesContext
object.- Overrides:
getPartialViewContext
in classFacesContext
- See Also:
-
getELContext
The default behavior of this method is to call
FacesContext.getELContext()
on the wrappedFacesContext
object.- Overrides:
getELContext
in classFacesContext
- See Also:
-
getExceptionHandler
The default behavior of this method is to call
FacesContext.getExceptionHandler()
on the wrappedFacesContext
object.- Overrides:
getExceptionHandler
in classFacesContext
- See Also:
-
setExceptionHandler
The default behavior of this method is to call
FacesContext.setExceptionHandler(ExceptionHandler)
on the wrappedFacesContext
object.- Overrides:
setExceptionHandler
in classFacesContext
- Parameters:
exceptionHandler
- theExceptionHandler
for this request.- See Also:
-
getMessageList
The default behavior of this method is to call
FacesContext.getMessageList()
on the wrappedFacesContext
object.- Overrides:
getMessageList
in classFacesContext
- Returns:
- an immutable
List
which is effectively a snapshot of the messages present at the time of invocation. - See Also:
-
getMessageList
The default behavior of this method is to call
FacesContext.getMessageList(String)
on the wrappedFacesContext
object.- Overrides:
getMessageList
in classFacesContext
- Returns:
- an immutable
List
which is effectively a snapshot of the messages present at the time of invocation. - See Also:
-
isPostback
public boolean isPostback()The default behavior of this method is to call
FacesContext.isPostback()
on the wrappedFacesContext
object.- Overrides:
isPostback
in classFacesContext
- See Also:
-
getCurrentPhaseId
The default behavior of this method is to call
FacesContext.getCurrentPhaseId()
on the wrappedFacesContext
object.- Overrides:
getCurrentPhaseId
in classFacesContext
- See Also:
-
setCurrentPhaseId
The default behavior of this method is to call
FacesContext.setCurrentPhaseId(PhaseId)
on the wrappedFacesContext
object.- Overrides:
setCurrentPhaseId
in classFacesContext
- Parameters:
currentPhaseId
- ThePhaseId
for the current phase.- See Also:
-
isValidationFailed
public boolean isValidationFailed()The default behavior of this method is to call
FacesContext.isValidationFailed()
on the wrappedFacesContext
object.- Overrides:
isValidationFailed
in classFacesContext
- See Also:
-
validationFailed
public void validationFailed()The default behavior of this method is to call
FacesContext.validationFailed()
on the wrappedFacesContext
object.- Overrides:
validationFailed
in classFacesContext
- See Also:
-
setProcessingEvents
public void setProcessingEvents(boolean processingEvents) The default behavior of this method is to call
FacesContext.setProcessingEvents(boolean)
on the wrappedFacesContext
object.- Overrides:
setProcessingEvents
in classFacesContext
- Parameters:
processingEvents
- flag indicating events should be processed or not- See Also:
-
isProcessingEvents
public boolean isProcessingEvents()The default behavior of this method is to call
FacesContext.isProcessingEvents()
on the wrappedFacesContext
object.- Overrides:
isProcessingEvents
in classFacesContext
- Returns:
true
if events should be published, otherwisefalse
- See Also:
-
isProjectStage
The default behavior of this method is to call
FacesContext.isProjectStage(javax.faces.application.ProjectStage)
on the wrappedFacesContext
object.- Overrides:
isProjectStage
in classFacesContext
- Parameters:
stage
- theProjectStage
to check- See Also:
-