Uses of Class
jakarta.faces.context.ResponseWriter
Packages that use ResponseWriter
-
Uses of ResponseWriter in jakarta.faces.context
Subclasses of ResponseWriter in jakarta.faces.contextModifier and TypeClassDescriptionclassPartialResponseWriter decorates an existingResponseWriterto support the generation of a partial response suitable for Ajax operations.classProvides a simple implementation ofResponseWriterthat can be subclassed by developers wishing to provide specialized behavior to an existingResponseWriterinstance.Methods in jakarta.faces.context that return ResponseWriterModifier and TypeMethodDescriptionabstract ResponseWriterResponseWriter.cloneWithWriter(Writer writer) Create and return a new instance of thisResponseWriter, using the specifiedWriteras the output destination.ResponseWriterWrapper.cloneWithWriter(Writer writer) The default behavior of this method is to callcloneWithWriter(java.io.Writer)on the wrappedResponseWriterobject.abstract ResponseWriterFacesContext.getResponseWriter()Return theResponseWriterto which components should direct their character-based output.FacesContextWrapper.getResponseWriter()The default behavior of this method is to callFacesContext.getResponseWriter()on the wrappedFacesContextobject.ResponseWriterWrapper.getWrapped()Methods in jakarta.faces.context with parameters of type ResponseWriterModifier and TypeMethodDescriptionabstract voidFacesContext.setResponseWriter(ResponseWriter responseWriter) Set theResponseWriterto which components should direct their character-based output.voidFacesContextWrapper.setResponseWriter(ResponseWriter responseWriter) The default behavior of this method is to callFacesContext.setResponseWriter(ResponseWriter)on the wrappedFacesContextobject.Constructors in jakarta.faces.context with parameters of type ResponseWriterModifierConstructorDescriptionPartialResponseWriter(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 ResponseWriterModifier and TypeMethodDescriptionabstract ResponseWriterRenderKit.createResponseWriter(Writer writer, String contentTypeList, String characterEncoding) Use the providedWriterto create a newResponseWriterinstance 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 wrappedRenderKitobject.