public class WebdavResponseImpl extends Object implements WebdavResponse
WebdavResponse interface.SC_FAILED_DEPENDENCY, SC_INSUFFICIENT_SPACE_ON_RESOURCE, SC_LOCKED, SC_MULTI_STATUS, SC_PROCESSING, SC_UNPROCESSABLE_ENTITYSC_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 |
|---|
WebdavResponseImpl(HttpServletResponse httpResponse)
Create a new
WebdavResponse |
WebdavResponseImpl(HttpServletResponse httpResponse,
boolean noCache)
Create a new
WebdavResponse |
| Modifier and Type | Method and Description |
|---|---|
void |
addCookie(Cookie cookie) |
void |
addDateHeader(String s,
long l) |
void |
addHeader(String s,
String s1) |
void |
addIntHeader(String s,
int i) |
boolean |
containsHeader(String s) |
String |
encodeRedirectUrl(String s) |
String |
encodeRedirectURL(String s) |
String |
encodeUrl(String s) |
String |
encodeURL(String s) |
void |
flushBuffer() |
int |
getBufferSize() |
String |
getCharacterEncoding() |
String |
getContentType() |
Locale |
getLocale() |
ServletOutputStream |
getOutputStream() |
PrintWriter |
getWriter() |
boolean |
isCommitted() |
void |
reset() |
void |
resetBuffer() |
void |
sendError(DavException exception)
If the specifid exception provides an error condition an Xml response body
is sent providing more detailed information about the error.
|
void |
sendError(int i) |
void |
sendError(int i,
String s) |
void |
sendMultiStatus(MultiStatus multistatus)
Send a multistatus response.
|
void |
sendPollResponse(EventDiscovery eventDiscovery)
Send the response to a successful POLL request.
|
void |
sendRedirect(String s) |
void |
sendRefreshLockResponse(ActiveLock[] locks)
Send response body for a lock request that was intended to refresh one
or several locks.
|
void |
sendSubscriptionResponse(Subscription subscription)
Send the response to a successful SUBSCRIBE request.
|
void |
sendXmlResponse(XmlSerializable serializable,
int status)
Send Xml response body.
|
void |
setBufferSize(int i) |
void |
setCharacterEncoding(String charset) |
void |
setContentLength(int i) |
void |
setContentType(String s) |
void |
setDateHeader(String s,
long l) |
void |
setHeader(String s,
String s1) |
void |
setIntHeader(String s,
int i) |
void |
setLocale(Locale locale) |
void |
setStatus(int i) |
void |
setStatus(int i,
String s) |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetHeader, getHeaderNames, getHeaders, getStatussetContentLengthLongpublic WebdavResponseImpl(HttpServletResponse httpResponse)
WebdavResponsehttpResponse - public WebdavResponseImpl(HttpServletResponse httpResponse, boolean noCache)
WebdavResponsehttpResponse - noCache - public void sendError(DavException exception) throws IOException
sendError in interface DavServletResponseexception - IOExceptionDavServletResponse.sendError(org.apache.jackrabbit.webdav.DavException),
sendError(int, String),
sendXmlResponse(XmlSerializable, int)public void sendMultiStatus(MultiStatus multistatus) throws IOException
sendMultiStatus in interface DavServletResponsemultistatus - IOExceptionDavServletResponse.sendMultiStatus(org.apache.jackrabbit.webdav.MultiStatus)public void sendRefreshLockResponse(ActiveLock[] locks) throws IOException
sendRefreshLockResponse in interface DavServletResponselocks - IOExceptionDavServletResponse.sendRefreshLockResponse(org.apache.jackrabbit.webdav.lock.ActiveLock[])public void sendXmlResponse(XmlSerializable serializable, int status) throws IOException
sendXmlResponse in interface DavServletResponseserializable - status - IOExceptionDavServletResponse.sendXmlResponse(XmlSerializable, int)public void sendSubscriptionResponse(Subscription subscription) throws IOException
ObservationDavServletResponsesendSubscriptionResponse in interface ObservationDavServletResponsesubscription - IOExceptionObservationDavServletResponse.sendSubscriptionResponse(org.apache.jackrabbit.webdav.observation.Subscription)public void sendPollResponse(EventDiscovery eventDiscovery) throws IOException
ObservationDavServletResponsesendPollResponse in interface ObservationDavServletResponseeventDiscovery - IOExceptionObservationDavServletResponse.sendPollResponse(org.apache.jackrabbit.webdav.observation.EventDiscovery)public void addCookie(Cookie cookie)
addCookie in interface HttpServletResponsepublic boolean containsHeader(String s)
containsHeader in interface HttpServletResponsepublic String encodeURL(String s)
encodeURL in interface HttpServletResponsepublic String encodeRedirectURL(String s)
encodeRedirectURL in interface HttpServletResponsepublic String encodeUrl(String s)
encodeUrl in interface HttpServletResponsepublic String encodeRedirectUrl(String s)
encodeRedirectUrl in interface HttpServletResponsepublic void sendError(int i,
String s)
throws IOException
sendError in interface HttpServletResponseIOExceptionpublic void sendError(int i)
throws IOException
sendError in interface HttpServletResponseIOExceptionpublic void sendRedirect(String s) throws IOException
sendRedirect in interface HttpServletResponseIOExceptionpublic void setDateHeader(String s, long l)
setDateHeader in interface HttpServletResponsepublic void addDateHeader(String s, long l)
addDateHeader in interface HttpServletResponsepublic void setHeader(String s, String s1)
setHeader in interface HttpServletResponsepublic void addHeader(String s, String s1)
addHeader in interface HttpServletResponsepublic void setIntHeader(String s, int i)
setIntHeader in interface HttpServletResponsepublic void addIntHeader(String s, int i)
addIntHeader in interface HttpServletResponsepublic void setStatus(int i)
setStatus in interface HttpServletResponsepublic void setStatus(int i,
String s)
setStatus in interface HttpServletResponsepublic String getCharacterEncoding()
getCharacterEncoding in interface ServletResponsepublic ServletOutputStream getOutputStream() throws IOException
getOutputStream in interface ServletResponseIOExceptionpublic PrintWriter getWriter() throws IOException
getWriter in interface ServletResponseIOExceptionpublic void setContentLength(int i)
setContentLength in interface ServletResponsepublic void setContentType(String s)
setContentType in interface ServletResponsepublic void setBufferSize(int i)
setBufferSize in interface ServletResponsepublic int getBufferSize()
getBufferSize in interface ServletResponsepublic void flushBuffer()
throws IOException
flushBuffer in interface ServletResponseIOExceptionpublic void resetBuffer()
resetBuffer in interface ServletResponsepublic boolean isCommitted()
isCommitted in interface ServletResponsepublic void reset()
reset in interface ServletResponsepublic void setLocale(Locale locale)
setLocale in interface ServletResponsepublic Locale getLocale()
getLocale in interface ServletResponsepublic String getContentType()
getContentType in interface ServletResponsepublic void setCharacterEncoding(String charset)
setCharacterEncoding in interface ServletResponseCopyright © 2010 - 2020 Adobe. All Rights Reserved