public interface DavServletResponse
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.
|
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 java.io.IOException
error
- java.io.IOException
void sendMultiStatus(MultiStatus multistatus) throws java.io.IOException
multistatus
- java.io.IOException
SC_MULTI_STATUS
void sendRefreshLockResponse(ActiveLock[] locks) throws java.io.IOException
ActiveLock
objects are then
included in the lockdiscovery property of the response body as required
by RFC 2518.locks
- java.io.IOException
DavConstants.PROPERTY_LOCKDISCOVERY
void sendXmlResponse(XmlSerializable serializable, int status) throws java.io.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 #setStatus(int)
.java.io.IOException
"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"