Methods Summary |
---|
public void | flushBuffer()The default behavior of this method is to call flushBuffer()
on the wrapped response object.
this.response.flushBuffer();
|
public int | getBufferSize()The default behavior of this method is to return getBufferSize()
on the wrapped response object.
return this.response.getBufferSize();
|
public java.lang.String | getCharacterEncoding()The default behavior of this method is to return getCharacterEncoding()
on the wrapped response object.
return this.response.getCharacterEncoding();
|
public java.lang.String | getContentType()The default behavior of this method is to return getContentType()
on the wrapped response object.
return this.response.getContentType();
|
public java.util.Locale | getLocale()The default behavior of this method is to return getLocale()
on the wrapped response object.
return this.response.getLocale();
|
public javax.servlet.ServletOutputStream | getOutputStream()The default behavior of this method is to return getOutputStream()
on the wrapped response object.
return this.response.getOutputStream();
|
public javax.servlet.ServletResponse | getResponse()Return the wrapped ServletResponse object.
return this.response;
|
public java.io.PrintWriter | getWriter()The default behavior of this method is to return getWriter()
on the wrapped response object.
return this.response.getWriter();
|
public boolean | isCommitted()The default behavior of this method is to return isCommitted()
on the wrapped response object.
return this.response.isCommitted();
|
public void | reset()The default behavior of this method is to call reset()
on the wrapped response object.
this.response.reset();
|
public void | resetBuffer()The default behavior of this method is to call resetBuffer()
on the wrapped response object.
this.response.resetBuffer();
|
public void | setBufferSize(int size)The default behavior of this method is to call setBufferSize(int size)
on the wrapped response object.
this.response.setBufferSize(size);
|
public void | setCharacterEncoding(java.lang.String charset)The default behavior of this method is to call setCharacterEncoding(String charset)
on the wrapped response object.
this.response.setCharacterEncoding(charset);
|
public void | setContentLength(int len)The default behavior of this method is to call setContentLength(int len)
on the wrapped response object.
this.response.setContentLength(len);
|
public void | setContentType(java.lang.String type)The default behavior of this method is to call setContentType(String type)
on the wrapped response object.
this.response.setContentType(type);
|
public void | setLocale(java.util.Locale loc)The default behavior of this method is to call setLocale(Locale loc)
on the wrapped response object.
this.response.setLocale(loc);
|
public void | setResponse(javax.servlet.ServletResponse response)Sets the response being wrapped.
if (response == null) {
throw new IllegalArgumentException("Response cannot be null");
}
this.response = response;
|