|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.faces.context.FacesContext javax.faces.context.FacesContextWrapper
public abstract class FacesContextWrapper
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.
Constructor Summary | |
---|---|
FacesContextWrapper()
|
Method Summary | |
---|---|
void |
addMessage(java.lang.String clientId,
FacesMessage message)
The default behavior of this method is to call FacesContext.addMessage(String, FacesMessage)
on the wrapped FacesContext object. |
Application |
getApplication()
The default behavior of this method is to call FacesContext.getApplication()
on the wrapped FacesContext object. |
java.util.Map<java.lang.Object,java.lang.Object> |
getAttributes()
The default behavior of this method is to call FacesContext.getAttributes()
on the wrapped FacesContext object. |
java.util.Iterator<java.lang.String> |
getClientIdsWithMessages()
The default behavior of this method is to call FacesContext.getClientIdsWithMessages()
on the wrapped FacesContext object. |
PhaseId |
getCurrentPhaseId()
The default behavior of this method is to call FacesContext.getCurrentPhaseId()
on the wrapped FacesContext object. |
javax.el.ELContext |
getELContext()
The default behavior of this method is to call FacesContext.getELContext()
on the wrapped FacesContext object. |
ExceptionHandler |
getExceptionHandler()
The default behavior of this method is to call FacesContext.getExceptionHandler()
on the wrapped FacesContext object. |
ExternalContext |
getExternalContext()
The default behavior of this method is to call FacesContext.getExternalContext()
on the wrapped FacesContext object. |
FacesMessage.Severity |
getMaximumSeverity()
The default behavior of this method is to call FacesContext.getMaximumSeverity()
on the wrapped FacesContext object. |
java.util.List<FacesMessage> |
getMessageList()
The default behavior of this method is to call FacesContext.getMessageList()
on the wrapped FacesContext object. |
java.util.List<FacesMessage> |
getMessageList(java.lang.String clientId)
The default behavior of this method is to call FacesContext.getMessageList(String)
on the wrapped FacesContext object. |
java.util.Iterator<FacesMessage> |
getMessages()
The default behavior of this method is to call FacesContext.getMessages()
on the wrapped FacesContext object. |
java.util.Iterator<FacesMessage> |
getMessages(java.lang.String clientId)
The default behavior of this method is to call FacesContext.getMessages(String)
on the wrapped FacesContext object. |
PartialViewContext |
getPartialViewContext()
The default behavior of this method is to call FacesContext.getPartialViewContext() ()}
on the wrapped FacesContext object. |
RenderKit |
getRenderKit()
The default behavior of this method is to call FacesContext.getRenderKit()
on the wrapped FacesContext object. |
boolean |
getRenderResponse()
The default behavior of this method is to call FacesContext.getRenderResponse()
on the wrapped FacesContext object. |
boolean |
getResponseComplete()
The default behavior of this method is to call FacesContext.getResponseComplete()
on the wrapped FacesContext object. |
ResponseStream |
getResponseStream()
The default behavior of this method is to call FacesContext.getResponseStream()
on the wrapped FacesContext object. |
ResponseWriter |
getResponseWriter()
The default behavior of this method is to call FacesContext.getResponseWriter()
on the wrapped FacesContext object. |
UIViewRoot |
getViewRoot()
The default behavior of this method is to call FacesContext.getViewRoot()
on the wrapped FacesContext object. |
abstract FacesContext |
getWrapped()
A class that implements this interface uses this method to return an instance of the class being wrapped. |
boolean |
isPostback()
The default behavior of this method is to call FacesContext.isPostback()
on the wrapped FacesContext object. |
boolean |
isProcessingEvents()
The default behavior of this method is to call FacesContext.isProcessingEvents()
on the wrapped FacesContext object. |
boolean |
isProjectStage(ProjectStage stage)
The default behavior of this method is to call FacesContext.isProjectStage(javax.faces.application.ProjectStage)
on the wrapped FacesContext object. |
boolean |
isReleased()
The default behavior of this method
is to call |
boolean |
isValidationFailed()
The default behavior of this method is to call FacesContext.isValidationFailed()
on the wrapped FacesContext object. |
void |
release()
The default behavior of this method is to call FacesContext.release()
on the wrapped FacesContext object. |
void |
renderResponse()
The default behavior of this method is to call FacesContext.renderResponse()
on the wrapped FacesContext object. |
void |
responseComplete()
The default behavior of this method is to call FacesContext.responseComplete()
on the wrapped FacesContext object. |
void |
setCurrentPhaseId(PhaseId currentPhaseId)
The default behavior of this method is to call FacesContext.setCurrentPhaseId(PhaseId)
on the wrapped FacesContext object. |
void |
setExceptionHandler(ExceptionHandler exceptionHandler)
The default behavior of this method is to call FacesContext.setExceptionHandler(ExceptionHandler)
on the wrapped FacesContext object. |
void |
setProcessingEvents(boolean processingEvents)
The default behavior of this method is to call FacesContext.setProcessingEvents(boolean)
on the wrapped FacesContext object. |
void |
setResponseStream(ResponseStream responseStream)
The default behavior of this method is to call FacesContext.setResponseStream(ResponseStream)
on the wrapped FacesContext object. |
void |
setResponseWriter(ResponseWriter responseWriter)
The default behavior of this method is to call FacesContext.setResponseWriter(ResponseWriter)
on the wrapped FacesContext object. |
void |
setViewRoot(UIViewRoot root)
The default behavior of this method is to call FacesContext.setViewRoot(UIViewRoot)
on the wrapped FacesContext object. |
void |
validationFailed()
The default behavior of this method is to call FacesContext.validationFailed()
on the wrapped FacesContext object. |
Methods inherited from class javax.faces.context.FacesContext |
---|
getCurrentInstance, setCurrentInstance |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public FacesContextWrapper()
Method Detail |
---|
public abstract FacesContext getWrapped()
FacesWrapper
A class that implements this interface uses this method to return an instance of the class being wrapped.
getWrapped
in interface FacesWrapper<FacesContext>
FacesContext
instanceFacesWrapper.getWrapped()
public Application getApplication()
The default behavior of this method is to
call FacesContext.getApplication()
on the wrapped FacesContext
object.
getApplication
in class FacesContext
FacesContext.getApplication()
public java.util.Iterator<java.lang.String> getClientIdsWithMessages()
The default behavior of this method is to
call FacesContext.getClientIdsWithMessages()
on the wrapped FacesContext
object.
getClientIdsWithMessages
in class FacesContext
FacesContext.getClientIdsWithMessages()
public ExternalContext getExternalContext()
The default behavior of this method is to
call FacesContext.getExternalContext()
on the wrapped FacesContext
object.
getExternalContext
in class FacesContext
FacesContext.getExternalContext()
public FacesMessage.Severity getMaximumSeverity()
The default behavior of this method is to
call FacesContext.getMaximumSeverity()
on the wrapped FacesContext
object.
getMaximumSeverity
in class FacesContext
FacesContext.getMaximumSeverity()
public java.util.Iterator<FacesMessage> getMessages()
The default behavior of this method is to
call FacesContext.getMessages()
on the wrapped FacesContext
object.
getMessages
in class FacesContext
FacesContext.getMessages()
public java.util.Iterator<FacesMessage> getMessages(java.lang.String clientId)
The default behavior of this method is to
call FacesContext.getMessages(String)
on the wrapped FacesContext
object.
getMessages
in class FacesContext
clientId
- The client identifier for which messages are
requested, or null
for messages not associated with
any client identifierFacesContext.getMessages(String)
public RenderKit getRenderKit()
The default behavior of this method is to
call FacesContext.getRenderKit()
on the wrapped FacesContext
object.
getRenderKit
in class FacesContext
FacesContext.getRenderKit()
public boolean getRenderResponse()
The default behavior of this method is to
call FacesContext.getRenderResponse()
on the wrapped FacesContext
object.
getRenderResponse
in class FacesContext
FacesContext.getRenderResponse()
public boolean getResponseComplete()
The default behavior of this method is to
call FacesContext.getResponseComplete()
on the wrapped FacesContext
object.
getResponseComplete
in class FacesContext
FacesContext.getResponseComplete()
public ResponseStream getResponseStream()
The default behavior of this method is to
call FacesContext.getResponseStream()
on the wrapped FacesContext
object.
getResponseStream
in class FacesContext
FacesContext.getResponseStream()
public void setResponseStream(ResponseStream responseStream)
The default behavior of this method is to
call FacesContext.setResponseStream(ResponseStream)
on the wrapped FacesContext
object.
setResponseStream
in class FacesContext
responseStream
- The new ResponseStream for this responseFacesContext.setResponseStream(ResponseStream)
public ResponseWriter getResponseWriter()
The default behavior of this method is to
call FacesContext.getResponseWriter()
on the wrapped FacesContext
object.
getResponseWriter
in class FacesContext
FacesContext.getResponseWriter()
public void setResponseWriter(ResponseWriter responseWriter)
The default behavior of this method is to
call FacesContext.setResponseWriter(ResponseWriter)
on the wrapped FacesContext
object.
setResponseWriter
in class FacesContext
responseWriter
- The new ResponseWriter for this responseFacesContext.setResponseWriter(ResponseWriter)
public UIViewRoot getViewRoot()
The default behavior of this method is to
call FacesContext.getViewRoot()
on the wrapped FacesContext
object.
getViewRoot
in class FacesContext
FacesContext.getViewRoot()
public void setViewRoot(UIViewRoot root)
The default behavior of this method is to
call FacesContext.setViewRoot(UIViewRoot)
on the wrapped FacesContext
object.
setViewRoot
in class FacesContext
root
- The new component UIViewRoot
componentFacesContext.setViewRoot(UIViewRoot)
public void addMessage(java.lang.String clientId, FacesMessage message)
The default behavior of this method is to
call FacesContext.addMessage(String, FacesMessage)
on the wrapped FacesContext
object.
addMessage
in class FacesContext
clientId
- The client identifier with which this message is
associated (if any)message
- The message to be appendedFacesContext.addMessage(String, FacesMessage)
public boolean isReleased()
The default behavior of this method
is to call FacesContext.isReleased()
on the wrapped FacesContext
object.
isReleased
in class FacesContext
true
if the resources have been released.FacesContext.isReleased()
public void release()
The default behavior of this method is to
call FacesContext.release()
on the wrapped FacesContext
object.
release
in class FacesContext
FacesContext.release()
public void renderResponse()
The default behavior of this method is to
call FacesContext.renderResponse()
on the wrapped FacesContext
object.
renderResponse
in class FacesContext
FacesContext.renderResponse()
public void responseComplete()
The default behavior of this method is to
call FacesContext.responseComplete()
on the wrapped FacesContext
object.
responseComplete
in class FacesContext
FacesContext.responseComplete()
public java.util.Map<java.lang.Object,java.lang.Object> getAttributes()
The default behavior of this method is to
call FacesContext.getAttributes()
on the wrapped FacesContext
object.
getAttributes
in class FacesContext
FacesContext.getAttributes()
public PartialViewContext getPartialViewContext()
The default behavior of this method is to
call FacesContext.getPartialViewContext()
()}
on the wrapped FacesContext
object.
getPartialViewContext
in class FacesContext
FacesContext.getPartialViewContext()
public javax.el.ELContext getELContext()
The default behavior of this method is to
call FacesContext.getELContext()
on the wrapped FacesContext
object.
getELContext
in class FacesContext
FacesContext.getELContext()
public ExceptionHandler getExceptionHandler()
The default behavior of this method is to
call FacesContext.getExceptionHandler()
on the wrapped FacesContext
object.
getExceptionHandler
in class FacesContext
FacesContext.getExceptionHandler()
public void setExceptionHandler(ExceptionHandler exceptionHandler)
The default behavior of this method is to
call FacesContext.setExceptionHandler(ExceptionHandler)
on the wrapped FacesContext
object.
setExceptionHandler
in class FacesContext
exceptionHandler
- the ExceptionHandler
for
this request.FacesContext.setExceptionHandler(ExceptionHandler)
public java.util.List<FacesMessage> getMessageList()
The default behavior of this method is to
call FacesContext.getMessageList()
on the wrapped FacesContext
object.
getMessageList
in class FacesContext
List
which is effectively a snapshot
of the messages present at the time of invocation.FacesContext.getMessageList()
public java.util.List<FacesMessage> getMessageList(java.lang.String clientId)
The default behavior of this method is to
call FacesContext.getMessageList(String)
on the wrapped FacesContext
object.
getMessageList
in class FacesContext
List
which is effectively a snapshot
of the messages present at the time of invocation.FacesContext.getMessageList(String)
public boolean isPostback()
The default behavior of this method is to
call FacesContext.isPostback()
on the wrapped FacesContext
object.
isPostback
in class FacesContext
FacesContext.isPostback()
public PhaseId getCurrentPhaseId()
The default behavior of this method is to
call FacesContext.getCurrentPhaseId()
on the wrapped FacesContext
object.
getCurrentPhaseId
in class FacesContext
FacesContext.getCurrentPhaseId()
public void setCurrentPhaseId(PhaseId currentPhaseId)
The default behavior of this method is to
call FacesContext.setCurrentPhaseId(PhaseId)
on the wrapped FacesContext
object.
setCurrentPhaseId
in class FacesContext
currentPhaseId
- The PhaseId
for the
current phase.FacesContext.setCurrentPhaseId(PhaseId)
public boolean isValidationFailed()
The default behavior of this method is to
call FacesContext.isValidationFailed()
on the wrapped FacesContext
object.
isValidationFailed
in class FacesContext
FacesContext.isValidationFailed()
public void validationFailed()
The default behavior of this method is to
call FacesContext.validationFailed()
on the wrapped FacesContext
object.
validationFailed
in class FacesContext
FacesContext.validationFailed()
public void setProcessingEvents(boolean processingEvents)
The default behavior of this method is to
call FacesContext.setProcessingEvents(boolean)
on the wrapped FacesContext
object.
setProcessingEvents
in class FacesContext
processingEvents
- flag indicating events should be processed or notFacesContext.setProcessingEvents(boolean)
public boolean isProcessingEvents()
The default behavior of this method is to
call FacesContext.isProcessingEvents()
on the wrapped FacesContext
object.
isProcessingEvents
in class FacesContext
true
if events should be published, otherwise
false
FacesContext.isProcessingEvents()
public boolean isProjectStage(ProjectStage stage)
The default behavior of this method is to
call FacesContext.isProjectStage(javax.faces.application.ProjectStage)
on the wrapped FacesContext
object.
isProjectStage
in class FacesContext
stage
- the ProjectStage
to checkFacesContext.isProjectStage(javax.faces.application.ProjectStage)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |