Uses of Class
jakarta.faces.context.ResponseWriter
-
Packages that use ResponseWriter Package Description jakarta.faces.context jakarta.faces.render -
-
Uses of ResponseWriter in jakarta.faces.context
Subclasses of ResponseWriter in jakarta.faces.context Modifier and Type Class Description class
PartialResponseWriter
PartialResponseWriter decorates an existingResponseWriter
to support the generation of a partial response suitable for Ajax operations.class
ResponseWriterWrapper
Provides a simple implementation ofResponseWriter
that can be subclassed by developers wishing to provide specialized behavior to an existingResponseWriter
instance.Methods in jakarta.faces.context that return ResponseWriter Modifier and Type Method Description abstract ResponseWriter
ResponseWriter. cloneWithWriter(Writer writer)
Create and return a new instance of thisResponseWriter
, using the specifiedWriter
as the output destination.ResponseWriter
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.ResponseWriter
FacesContextWrapper. getResponseWriter()
The default behavior of this method is to callFacesContext.getResponseWriter()
on the wrappedFacesContext
object.ResponseWriter
ResponseWriterWrapper. getWrapped()
Methods in jakarta.faces.context with parameters of type ResponseWriter Modifier and Type Method Description abstract 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.Constructors in jakarta.faces.context with parameters of type ResponseWriter Constructor Description PartialResponseWriter(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
Methods in jakarta.faces.render that return ResponseWriter Modifier and Type Method Description abstract 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.ResponseWriter
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.
-