public class HttpServletResponseWrapper extends ServletResponseWrapper implements HttpServletResponse
SC_ACCEPTED, SC_BAD_GATEWAY, SC_BAD_REQUEST, SC_CONFLICT, SC_CONTINUE, SC_CREATED, SC_EXPECTATION_FAILED, SC_FORBIDDEN, SC_FOUND, SC_GATEWAY_TIMEOUT, SC_GONE, SC_HTTP_VERSION_NOT_SUPPORTED, SC_INTERNAL_SERVER_ERROR, SC_LENGTH_REQUIRED, SC_METHOD_NOT_ALLOWED, SC_MOVED_PERMANENTLY, SC_MOVED_TEMPORARILY, SC_MULTIPLE_CHOICES, SC_NO_CONTENT, SC_NON_AUTHORITATIVE_INFORMATION, SC_NOT_ACCEPTABLE, SC_NOT_FOUND, SC_NOT_IMPLEMENTED, SC_NOT_MODIFIED, SC_OK, SC_PARTIAL_CONTENT, SC_PAYMENT_REQUIRED, SC_PRECONDITION_FAILED, SC_PROXY_AUTHENTICATION_REQUIRED, SC_REQUEST_ENTITY_TOO_LARGE, SC_REQUEST_TIMEOUT, SC_REQUEST_URI_TOO_LONG, SC_REQUESTED_RANGE_NOT_SATISFIABLE, SC_RESET_CONTENT, SC_SEE_OTHER, SC_SERVICE_UNAVAILABLE, SC_SWITCHING_PROTOCOLS, SC_TEMPORARY_REDIRECT, SC_UNAUTHORIZED, SC_UNSUPPORTED_MEDIA_TYPE, SC_USE_PROXY
Constructor and Description |
---|
HttpServletResponseWrapper(HttpServletResponse response)
Create a new HttpServletResponseWrapper to act as an adapter for the
supplied HttpServletResponse.
|
Modifier and Type | Method and Description |
---|---|
void |
addCookie(Cookie cookie)
By default passes the call to the underlying HttpServletResponse
|
void |
addDateHeader(java.lang.String name,
long date)
By default passes the call to the underlying HttpServletResponse
|
void |
addHeader(java.lang.String name,
java.lang.String value)
By default passes the call to the underlying HttpServletResponse
|
void |
addIntHeader(java.lang.String name,
int value)
By default passes the call to the underlying HttpServletResponse
|
boolean |
containsHeader(java.lang.String name)
By default passes the call to the underlying HttpServletResponse
|
java.lang.String |
encodeRedirectUrl(java.lang.String url)
Deprecated.
use
encodeRedirectURL() |
java.lang.String |
encodeRedirectURL(java.lang.String url)
By default passes the call to the underlying HttpServletResponse
|
java.lang.String |
encodeUrl(java.lang.String url)
Deprecated.
use
encodeURL() |
java.lang.String |
encodeURL(java.lang.String url)
By default passes the call to the underlying HttpServletResponse
|
java.lang.String |
getContentType()
get the content type
|
java.lang.String |
getHeader(java.lang.String name)
By default passes the call to the underlying HttpServletResponse
|
java.util.Collection<java.lang.String> |
getHeaderNames()
By default passes the call to the underlying HttpServletResponse
|
java.util.Collection<java.lang.String> |
getHeaders(java.lang.String name)
By default passes the call to the underlying HttpServletResponse
|
int |
getStatus()
By default passes the call to the underlying HttpServletResponse
|
void |
sendError(int status)
By default passes the call to the underlying HttpServletResponse
|
void |
sendError(int status,
java.lang.String message)
By default passes the call to the underlying HttpServletResponse
|
void |
sendRedirect(java.lang.String location)
By default passes the call to the underlying HttpServletResponse
|
void |
setDateHeader(java.lang.String name,
long date)
By default passes the call to the underlying HttpServletResponse
|
void |
setHeader(java.lang.String name,
java.lang.String value)
By default passes the call to the underlying HttpServletResponse
|
void |
setIntHeader(java.lang.String name,
int value)
By default passes the call to the underlying HttpServletResponse
|
void |
setStatus(int status)
By default passes the call to the underlying HttpServletResponse
|
void |
setStatus(int status,
java.lang.String msg)
Deprecated.
only errors should give an extra error message,
|
flushBuffer, getBufferSize, getCharacterEncoding, getLocale, getOutputStream, getResponse, getWriter, isCommitted, isWrapperFor, isWrapperFor, reset, resetBuffer, setBufferSize, setCharacterEncoding, setContentLength, setContentType, setLocale, setResponse
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
flushBuffer, getBufferSize, getCharacterEncoding, getLocale, getOutputStream, getWriter, isCommitted, reset, resetBuffer, setBufferSize, setCharacterEncoding, setContentLength, setContentType, setLocale
public HttpServletResponseWrapper(HttpServletResponse response)
response
- the response to be wrappedjava.lang.IllegalArgumentException
- if response is nullpublic java.lang.String getContentType()
ServletResponseWrapper
getContentType
in interface ServletResponse
getContentType
in class ServletResponseWrapper
public void addCookie(Cookie cookie)
addCookie
in interface HttpServletResponse
cookie
- the cookie to be addedpublic boolean containsHeader(java.lang.String name)
containsHeader
in interface HttpServletResponse
name
- the name of the header filedpublic java.lang.String encodeURL(java.lang.String url)
encodeURL
in interface HttpServletResponse
url
- the URL to be encodedpublic java.lang.String encodeRedirectURL(java.lang.String url)
encodeRedirectURL
in interface HttpServletResponse
url
- the URL to be encodedHttpServletResponse.sendRedirect(java.lang.String)
public java.lang.String encodeUrl(java.lang.String url)
encodeURL()
encodeUrl
in interface HttpServletResponse
url
- the URL to be encodedpublic java.lang.String encodeRedirectUrl(java.lang.String url)
encodeRedirectURL()
encodeRedirectUrl
in interface HttpServletResponse
url
- the URL to be encodedHttpServletResponse.sendRedirect(java.lang.String)
public void sendError(int status, java.lang.String message) throws java.io.IOException
sendError
in interface HttpServletResponse
status
- The error codemessage
- A descriptive error messagejava.io.IOException
public void sendError(int status) throws java.io.IOException
sendError
in interface HttpServletResponse
status
- The error codejava.io.IOException
public void sendRedirect(java.lang.String location) throws java.io.IOException
sendRedirect
in interface HttpServletResponse
java.io.IOException
- if an i/o error occurspublic void setDateHeader(java.lang.String name, long date)
setDateHeader
in interface HttpServletResponse
name
- The name of the header fielddate
- The date in milliseconds since January 1, 1970, 00:00:00 GMTpublic void addDateHeader(java.lang.String name, long date)
addDateHeader
in interface HttpServletResponse
public void setHeader(java.lang.String name, java.lang.String value)
setHeader
in interface HttpServletResponse
name
- The name of the header fieldvalue
- The (new) value of the header fieldpublic void addHeader(java.lang.String name, java.lang.String value)
addHeader
in interface HttpServletResponse
public void setIntHeader(java.lang.String name, int value)
setIntHeader
in interface HttpServletResponse
name
- The name of the header fieldvalue
- The (new) value of the header fieldpublic void addIntHeader(java.lang.String name, int value)
addIntHeader
in interface HttpServletResponse
public void setStatus(int status)
setStatus
in interface HttpServletResponse
status
- The status codeHttpServletResponse.sendError(int, java.lang.String)
public void setStatus(int status, java.lang.String msg)
setStatus
in interface HttpServletResponse
status
- The status codeHttpServletResponse.sendError(int, java.lang.String)
,
HttpServletResponse.setStatus(int)
public int getStatus()
getStatus
in interface HttpServletResponse
public java.lang.String getHeader(java.lang.String name)
getHeader
in interface HttpServletResponse
public java.util.Collection<java.lang.String> getHeaders(java.lang.String name)
getHeaders
in interface HttpServletResponse
public java.util.Collection<java.lang.String> getHeaderNames()
getHeaderNames
in interface HttpServletResponse