Class ResponseWriterWrapper
- All Implemented Interfaces:
Closeable,Flushable,Appendable,AutoCloseable,FacesWrapper<ResponseWriter>
- Direct Known Subclasses:
PartialResponseWriter
Provides a simple implementation
of ResponseWriter that
can be subclassed by developers wishing to provide specialized
behavior to an existing ResponseWriter instance. The default
implementation of all methods is to call through to the wrapped
ResponseWriter.
Usage: extend this class and override getWrapped() to
return the instance we are wrapping.
- Since:
- 1.2
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncloneWithWriter(Writer writer) The default behavior of this method is to callResponseWriter.cloneWithWriter(java.io.Writer)on the wrappedResponseWriterobject.voidclose()The default behavior of this method is to callWriter.close()on the wrappedResponseWriterobject.voidendCDATA()The default behavior of this method is to callResponseWriter.endCDATA()on the wrappedResponseWriterobject.voidThe default behavior of this method is to callResponseWriter.endDocument()on the wrappedResponseWriterobject.voidendElement(String name) The default behavior of this method is to callResponseWriter.endElement(String)on the wrappedResponseWriterobject.voidflush()The default behavior of this method is to callResponseWriter.flush()on the wrappedResponseWriterobject.The default behavior of this method is to callResponseWriter.getCharacterEncoding()on the wrappedResponseWriterobject.The default behavior of this method is to callResponseWriter.getContentType()on the wrappedResponseWriterobject.abstract ResponseWriterReturn the instance that we are wrapping.voidThe default behavior of this method is to callResponseWriter.startCDATA()on the wrappedResponseWriterobject.voidThe default behavior of this method is to callResponseWriter.startDocument()on the wrappedResponseWriterobject.voidstartElement(String name, UIComponent component) The default behavior of this method is to callResponseWriter.startElement(String, javax.faces.component.UIComponent)on the wrappedResponseWriterobject.voidwrite(char[] cbuf, int off, int len) The default behavior of this method is to callWriter.write(char[], int, int)on the wrappedResponseWriterobject.voidwriteAttribute(String name, Object value, String property) The default behavior of this method is to callResponseWriter.writeAttribute(String, Object, String)on the wrappedResponseWriterobject.voidwriteComment(Object comment) The default behavior of this method is to callResponseWriter.writeComment(Object)on the wrappedResponseWriterobject.voidwriteDoctype(String doctype) The default behavior of this method is to callResponseWriter.writeDoctype(java.lang.String)on the wrappedResponseWriterobject.voidwritePreamble(String preamble) The default behavior of this method is to callResponseWriter.writePreamble(java.lang.String)on the wrappedResponseWriterobject.voidwriteText(char[] text, int off, int len) The default behavior of this method is to callResponseWriter.writeText(char[], int, int)on the wrappedResponseWriterobject.voidThe default behavior of this method is to callResponseWriter.writeText(Object, String)on the wrappedResponseWriterobject.voidwriteText(Object text, UIComponent component, String property) The default behavior of this method is to callResponseWriter.writeText(Object, UIComponent, String)on the wrappedResponseWriterobject.voidwriteURIAttribute(String name, Object value, String property) The default behavior of this method is to callResponseWriter.writeURIAttribute(String, Object, String)on the wrappedResponseWriterobject.
-
Constructor Details
-
ResponseWriterWrapper
public ResponseWriterWrapper()
-
-
Method Details
-
getWrapped
Return the instance that we are wrapping. As of version 2, this method is public.
- Specified by:
getWrappedin interfaceFacesWrapper<ResponseWriter>
-
getContentType
The default behavior of this method is to call
ResponseWriter.getContentType()on the wrappedResponseWriterobject.- Specified by:
getContentTypein classResponseWriter- Since:
- 1.2
- See Also:
-
getCharacterEncoding
The default behavior of this method is to call
ResponseWriter.getCharacterEncoding()on the wrappedResponseWriterobject.- Specified by:
getCharacterEncodingin classResponseWriter- Since:
- 1.2
- See Also:
-
flush
The default behavior of this method is to call
ResponseWriter.flush()on the wrappedResponseWriterobject.- Specified by:
flushin interfaceFlushable- Specified by:
flushin classResponseWriter- Throws:
IOException- Since:
- 1.2
- See Also:
-
startDocument
The default behavior of this method is to call
ResponseWriter.startDocument()on the wrappedResponseWriterobject.- Specified by:
startDocumentin classResponseWriter- Throws:
IOException- if an input/output error occurs- Since:
- 1.2
- See Also:
-
endDocument
The default behavior of this method is to call
ResponseWriter.endDocument()on the wrappedResponseWriterobject.- Specified by:
endDocumentin classResponseWriter- Throws:
IOException- if an input/output error occurs- Since:
- 1.2
- See Also:
-
startElement
The default behavior of this method is to call
ResponseWriter.startElement(String, javax.faces.component.UIComponent)on the wrappedResponseWriterobject.- Specified by:
startElementin classResponseWriter- Parameters:
name- Name of the element to be startedcomponent- TheUIComponent(if any) to which this element corresponds. This component is inspected for its pass through attributes as described in the standard HTML_BASICRenderKitspecification.- Throws:
IOException- if an input/output error occurs- Since:
- 1.2
- See Also:
-
startCDATA
The default behavior of this method is to call
ResponseWriter.startCDATA()on the wrappedResponseWriterobject.- Overrides:
startCDATAin classResponseWriter- Throws:
IOException- on any read/write error- Since:
- 2.0
-
endCDATA
The default behavior of this method is to call
ResponseWriter.endCDATA()on the wrappedResponseWriterobject.- Overrides:
endCDATAin classResponseWriter- Throws:
IOException- on any read/write error- Since:
- 2.0
-
endElement
The default behavior of this method is to call
ResponseWriter.endElement(String)on the wrappedResponseWriterobject.- Specified by:
endElementin classResponseWriter- Parameters:
name- Name of the element to be ended- Throws:
IOException- on any read/write error- Since:
- 1.2
- See Also:
-
writeAttribute
The default behavior of this method is to call
ResponseWriter.writeAttribute(String, Object, String)on the wrappedResponseWriterobject.- Specified by:
writeAttributein classResponseWriter- Parameters:
name- Attribute name to be addedvalue- Attribute value to be addedproperty- Name of the property or attribute (if any) of theUIComponentassociated with the containing element, to which this generated attribute corresponds- Throws:
IOException- if an input/output error occurs- Since:
- 1.2
- See Also:
-
writeURIAttribute
The default behavior of this method is to call
ResponseWriter.writeURIAttribute(String, Object, String)on the wrappedResponseWriterobject.- Specified by:
writeURIAttributein classResponseWriter- Parameters:
name- Attribute name to be addedvalue- Attribute value to be addedproperty- Name of the property or attribute (if any) of theUIComponentassociated with the containing element, to which this generated attribute corresponds- Throws:
IOException- if an input/output error occurs- Since:
- 1.2
- See Also:
-
writeComment
The default behavior of this method is to call
ResponseWriter.writeComment(Object)on the wrappedResponseWriterobject.- Specified by:
writeCommentin classResponseWriter- Parameters:
comment- Text content of the comment- Throws:
IOException- if an input/output error occurs- Since:
- 1.2
- See Also:
-
writeDoctype
The default behavior of this method is to call
ResponseWriter.writeDoctype(java.lang.String)on the wrappedResponseWriterobject.- Overrides:
writeDoctypein classResponseWriter- Parameters:
doctype- Text content of the doctype- Throws:
IOException- if an input/output error occurs- Since:
- 2.2
- See Also:
-
writePreamble
The default behavior of this method is to call
ResponseWriter.writePreamble(java.lang.String)on the wrappedResponseWriterobject.- Overrides:
writePreamblein classResponseWriter- Parameters:
preamble- Text content of the preamble- Throws:
IOException- if an input/output error occurs- Since:
- 2.2
- See Also:
-
writeText
The default behavior of this method is to call
ResponseWriter.writeText(Object, String)on the wrappedResponseWriterobject.- Specified by:
writeTextin classResponseWriter- Parameters:
text- Text to be writtenproperty- Name of the property or attribute (if any) of theUIComponentassociated with the containing element, to which this generated text corresponds- Throws:
IOException- if an input/output error occurs- Since:
- 1.2
- See Also:
-
writeText
The default behavior of this method is to call
ResponseWriter.writeText(Object, UIComponent, String)on the wrappedResponseWriterobject.- Overrides:
writeTextin classResponseWriter- Parameters:
text- Text to be writtencomponent- TheUIComponent(if any) to which this element correspondsproperty- Name of the property or attribute (if any) of theUIComponentassociated with the containing element, to which this generated text corresponds- Throws:
IOException- if an input/output error occurs- Since:
- 1.2
- See Also:
-
writeText
The default behavior of this method is to call
ResponseWriter.writeText(char[], int, int)on the wrappedResponseWriterobject.- Specified by:
writeTextin classResponseWriter- Parameters:
text- Text to be writtenoff- Starting offset (zero-relative)len- Number of characters to be written- Throws:
IOException- if an input/output error occurs- Since:
- 1.2
- See Also:
-
cloneWithWriter
The default behavior of this method is to call
ResponseWriter.cloneWithWriter(java.io.Writer)on the wrappedResponseWriterobject.- Specified by:
cloneWithWriterin classResponseWriter- Parameters:
writer- TheWriterthat is the output destination- Since:
- 1.2
- See Also:
-
close
The default behavior of this method is to call
Writer.close()on the wrappedResponseWriterobject.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classWriter- Throws:
IOException- Since:
- 1.2
- See Also:
-
write
The default behavior of this method is to call
Writer.write(char[], int, int)on the wrappedResponseWriterobject.- Specified by:
writein classWriter- Throws:
IOException- Since:
- 1.2
- See Also:
-