public interface DavServletResponse
extends javax.servlet.http.HttpServletResponse
WebdavResponse
extends the HttpServletResponse by
Webdav specific status codes and METHODS.Modifier and Type | Field and Description |
---|---|
static int |
SC_FAILED_DEPENDENCY
Status code (424) indicating that the method could not be
performed on the resource, because the requested action depended
on another action which failed.
|
static int |
SC_INSUFFICIENT_SPACE_ON_RESOURCE
Status code (507) indicating that the resource does not have
sufficient space to record the state of the resource after the
execution of this method.
|
static int |
SC_LOCKED
Status code (423) indicating the destination resource of a
method is locked, and either the request did not contain a
valid Lock-Info header, or the Lock-Info header identifies
a lock held by another principal.
|
static int |
SC_MULTI_STATUS
Status code (207) indicating that the response requires
providing status for multiple independent operations.
|
static int |
SC_PROCESSING
The 102 (Processing) status code is an interim response used to
inform the client that the server has accepted the complete request,
but has not yet completed it.
|
static int |
SC_UNPROCESSABLE_ENTITY
The 422 (Unprocessable Entity) status code means the server understands
the content type of the request entity (hence a 415(Unsupported Media Type)
status code is inappropriate), and the syntax of the request entity is
correct (thus a 400 (Bad Request) status code is inappropriate) but was
unable to process the contained instructions.
|
SC_ACCEPTED, SC_BAD_GATEWAY, SC_BAD_REQUEST, SC_CONFLICT, SC_CONTINUE, SC_CREATED, SC_EXPECTATION_FAILED, SC_FORBIDDEN, 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
Modifier and Type | Method and Description |
---|---|
void |
sendError(DavException error)
Send a response body given more detailed information about the error
occurred.
|
void |
sendMultiStatus(MultiStatus multistatus)
Send the multistatus response to the client.
|
void |
sendRefreshLockResponse(ActiveLock[] locks)
Send the lock response for a successful LOCK request, that was intended
to refresh an existing lock.
|
void |
sendXmlResponse(XmlSerializable serializable,
int status)
Generic method to return an Xml response body.
|
static final int SC_PROCESSING
static final int SC_MULTI_STATUS
static final int SC_UNPROCESSABLE_ENTITY
static final int SC_LOCKED
static final int SC_FAILED_DEPENDENCY
static final int SC_INSUFFICIENT_SPACE_ON_RESOURCE
void sendError(DavException error) throws IOException
error
- IOException
void sendMultiStatus(MultiStatus multistatus) throws IOException
multistatus
- IOException
SC_MULTI_STATUS
void sendRefreshLockResponse(ActiveLock[] locks) throws IOException
ActiveLock
objects are then
included in the lockdiscovery property of the response body as required
by RFC 2518.locks
- IOException
DavConstants.PROPERTY_LOCKDISCOVERY
void sendXmlResponse(XmlSerializable serializable, int status) throws IOException
serializable
- object that can be converted to the root Xml element
of the document to be sent as response body.status
- Status code to be used with HttpServletResponse.setStatus(int)
.IOException
Copyright © 2004–2021 The Apache Software Foundation. All rights reserved.