Uses of Class
jakarta.faces.context.ResponseWriter
-
Uses of ResponseWriter in jakarta.faces.context
Modifier and TypeClassDescriptionclass
PartialResponseWriter decorates an existingResponseWriter
to support the generation of a partial response suitable for Ajax operations.class
Provides a simple implementation ofResponseWriter
that can be subclassed by developers wishing to provide specialized behavior to an existingResponseWriter
instance.Modifier and TypeMethodDescriptionabstract ResponseWriter
ResponseWriter.cloneWithWriter
(Writer writer) Create and return a new instance of thisResponseWriter
, using the specifiedWriter
as the output destination.ResponseWriterWrapper.cloneWithWriter
(Writer writer) The default behavior of this method is to callcloneWithWriter(java.io.Writer)
on the wrappedResponseWriter
object.abstract ResponseWriter
FacesContext.getResponseWriter()
Return theResponseWriter
to which components should direct their character-based output.FacesContextWrapper.getResponseWriter()
The default behavior of this method is to callFacesContext.getResponseWriter()
on the wrappedFacesContext
object.ResponseWriterWrapper.getWrapped()
Modifier and TypeMethodDescriptionabstract void
FacesContext.setResponseWriter
(ResponseWriter responseWriter) Set theResponseWriter
to which components should direct their character-based output.void
FacesContextWrapper.setResponseWriter
(ResponseWriter responseWriter) The default behavior of this method is to callFacesContext.setResponseWriter(ResponseWriter)
on the wrappedFacesContext
object.ModifierConstructorDescriptionPartialResponseWriter
(ResponseWriter writer) Create aPartialResponseWriter
.ResponseWriterWrapper
(ResponseWriter wrapped) If this response writer has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. -
Uses of ResponseWriter in jakarta.faces.render
Modifier and TypeMethodDescriptionabstract ResponseWriter
RenderKit.createResponseWriter
(Writer writer, String contentTypeList, String characterEncoding) Use the providedWriter
to create a newResponseWriter
instance for the specified (optional) content type, and character encoding.RenderKitWrapper.createResponseWriter
(Writer writer, String contentTypeList, String characterEncoding) The default behavior of this method is to callRenderKit.createResponseWriter(java.io.Writer, String, String)
on the wrappedRenderKit
object.