Class ResponseImpl
- java.lang.Object
- 
- org.apache.tapestry5.http.internal.services.ResponseImpl
 
- 
- All Implemented Interfaces:
- Response
 
 public class ResponseImpl extends Object implements Response Implementation ofResponsethat wraps around an underlyingHttpServletResponse.
- 
- 
Constructor SummaryConstructors Constructor Description ResponseImpl(HttpServletRequest request, HttpServletResponse response)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddHeader(String name, String value)Adds a response header with the given name and value, not overwriting any previous values which may have already been added.voiddisableCompression()Invoked to indicate that the response content is either already compressed, or is not compressable.StringencodeRedirectURL(String URL)Encodes the URL for use as a redirect, ensuring that a session id is included (if a session exists, and as necessary depending on the client browser's use of cookies).StringencodeURL(String URL)Encodes the URL, ensuring that a session id is included (if a session exists, and as necessary depending on the client browser's use of cookies).OutputStreamgetOutputStream(String contentType)Returns an OutputStream to which byte-oriented output may be sent.PrintWritergetPrintWriter(String contentType)Returns a PrintWriter object to which output may be sent.booleanisCommitted()Returns true if the response has already been sent, either as a redirect or as a stream of content.voidsendError(int sc, String message)Sends an error response to the client using the specified status.voidsendRedirect(String URL)Sends a redirect to the client.voidsendRedirect(Link link)Sends a redirect to a link.voidsetContentLength(int length)Sets the length of the content body in the response; this method sets the HTTP Content-Length header.voidsetDateHeader(String name, long date)Sets a response header with the given name and date-value.voidsetHeader(String name, String value)Sets a response header with the given name and value.voidsetIntHeader(String name, int value)Sets a response header with the given name and integer value.voidsetStatus(int sc)Sets the status code for this response.
 
- 
- 
- 
Constructor Detail- 
ResponseImplpublic ResponseImpl(HttpServletRequest request, HttpServletResponse response) 
 
- 
 - 
Method Detail- 
getPrintWriterpublic PrintWriter getPrintWriter(String contentType) throws IOException Description copied from interface:ResponseReturns a PrintWriter object to which output may be sent. Invoking flush() on the writer will commit the output.- Specified by:
- getPrintWriterin interface- Response
- Parameters:
- contentType- the MIME content type for the output, typically "text/html"
- Throws:
- IOException
 
 - 
encodeURLpublic String encodeURL(String URL) Description copied from interface:ResponseEncodes the URL, ensuring that a session id is included (if a session exists, and as necessary depending on the client browser's use of cookies).
 - 
encodeRedirectURLpublic String encodeRedirectURL(String URL) Description copied from interface:ResponseEncodes the URL for use as a redirect, ensuring that a session id is included (if a session exists, and as necessary depending on the client browser's use of cookies).- Specified by:
- encodeRedirectURLin interface- Response
- Returns:
- the same URL or a different one with additional information to track the user session
 
 - 
sendRedirectpublic void sendRedirect(String URL) throws IOException Description copied from interface:ResponseSends a redirect to the client.- Specified by:
- sendRedirectin interface- Response
- Parameters:
- URL- full or partial (relative) URL to send to the client
- Throws:
- IOException
- See Also:
- Response.encodeRedirectURL(String)
 
 - 
sendRedirectpublic void sendRedirect(Link link) throws IOException Description copied from interface:ResponseSends a redirect to a link.- Specified by:
- sendRedirectin interface- Response
- Parameters:
- link- link to redirect to.
- Throws:
- IOException
 
 - 
setStatuspublic void setStatus(int sc) Description copied from interface:ResponseSets the status code for this response. This method is used to set the return status code when there is no error (for example, for the status codes SC_OK or SC_MOVED_TEMPORARILY). If there is an error, and the caller wishes to invoke an error-page defined in the web applicaion, thesendErrormethod should be used instead.
 - 
getOutputStreampublic OutputStream getOutputStream(String contentType) throws IOException Description copied from interface:ResponseReturns an OutputStream to which byte-oriented output may be sent. Invoking flush() on the stream will commit the output.- Specified by:
- getOutputStreamin interface- Response
- Parameters:
- contentType- the MIME content type for the output, often "application/octet-stream" or "text/plain" or one of several others
- Throws:
- IOException
 
 - 
sendErrorpublic void sendError(int sc, String message) throws IOException Description copied from interface:ResponseSends an error response to the client using the specified status. The server defaults to creating the response to look like an HTML-formatted server error page containing the specified message, setting the content type to "text/html", leaving cookies and other headers unmodified. If an error-page declaration has been made for the web application corresponding to the status code passed in, it will be served back in preference to the suggested msg parameter. If the response has already been committed, this method throws an IllegalStateException. After using this method, the response should be considered to be committed and should not be written to.- Specified by:
- sendErrorin interface- Response
- Parameters:
- sc- the error status code
- message- the descriptive message
- Throws:
- IOException- If an input or output exception occurs
 
 - 
setContentLengthpublic void setContentLength(int length) Description copied from interface:ResponseSets the length of the content body in the response; this method sets the HTTP Content-Length header.- Specified by:
- setContentLengthin interface- Response
- Parameters:
- length- the length of the content
 
 - 
setDateHeaderpublic void setDateHeader(String name, long date) Description copied from interface:ResponseSets a response header with the given name and date-value. The date is specified in terms of milliseconds since the epoch. If the header had already been set, the new value overwrites the previous one.- Specified by:
- setDateHeaderin interface- Response
- Parameters:
- name- the name of the header to set
- date- the assigned date value
 
 - 
setHeaderpublic void setHeader(String name, String value) Description copied from interface:ResponseSets a response header with the given name and value. If the header had already been set, the new value overwrites the previous one.
 - 
addHeaderpublic void addHeader(String name, String value) Description copied from interface:ResponseAdds a response header with the given name and value, not overwriting any previous values which may have already been added.
 - 
setIntHeaderpublic void setIntHeader(String name, int value) Description copied from interface:ResponseSets a response header with the given name and integer value. If the header had already been set, the new value overwrites the previous one.- Specified by:
- setIntHeaderin interface- Response
- Parameters:
- name- the name of the header to set
- value- the assigned integer value
 
 - 
isCommittedpublic boolean isCommitted() Description copied from interface:ResponseReturns true if the response has already been sent, either as a redirect or as a stream of content.- Specified by:
- isCommittedin interface- Response
- Returns:
- true if response already sent
 
 - 
disableCompressionpublic void disableCompression() Description copied from interface:ResponseInvoked to indicate that the response content is either already compressed, or is not compressable.- Specified by:
- disableCompressionin interface- Response
 
 
- 
 
-