Method Summary |
|
public ServletOutputStream | createOutputStream() Create and return a ServletOutputStream to write the content
associated with this Response. |
public void | finishResponse() Perform whatever actions are required to flush and close the output
stream or writer, in a single operation. |
public Connector | getConnector() Return the Connector through which this Response is returned. |
public int | getContentCount() Return the number of bytes actually written to the output stream. |
public int | getContentLength() Return the content length that was set or calculated for this Response. |
public String | getContentType() Return the content type that was set or calculated for this response,
or null if no content type was set. |
public Context | getContext() Return the Context with which this Response is associated. |
public boolean | getIncluded() Return the "processing inside an include" flag. |
public String | getInfo() Return descriptive information about this Response implementation and
the corresponding version number, in the format
<description>/<version> . |
public PrintWriter | getReporter() Return a PrintWriter that can be used to render error messages,
regardless of whether a stream or writer has already been acquired.
Writer which can be used for error reports. |
public Request | getRequest() Return the Request with which this Response is associated. |
public ServletResponse | getResponse() Return the ServletResponse for which this object
is the facade. |
public OutputStream | getStream() Return the output stream associated with this Response. |
public boolean | isAppCommitted() Application commit flag accessor. |
public boolean | isError() Error flag accessor. |
public boolean | isSuspended() Suspended flag accessor. |
public void | recycle() Release all object references, and initialize instance variables, in
preparation for reuse of this object. |
public void | resetBuffer() Reset the data buffer but not any status or header information. |
public void | sendAcknowledgement() Send an acknowledgment of a request. |
public void | setAppCommitted(boolean appCommitted) Set the application commit flag. |
public void | setConnector(Connector connector) Set the Connector through which this Response is returned. |
public void | setContext(Context context) Set the Context with which this Response is associated. |
public void | setError() Set the error flag. |
public void | setIncluded(boolean included) Set the "processing inside an include" flag. |
public void | setRequest(Request request) Set the Request with which this Response is associated. |
public void | setStream(OutputStream stream) Set the output stream associated with this Response. |
public void | setSuspended(boolean suspended) Set the suspended flag. |