|
|
|
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<DAVStatus>
org.torweg.pulse.webdav.DAVStatus
public enum DAVStatus
The DAVStatus maps the HTTP/WebDAV status codes to their
corresponding status messages.
| Enum Constant Summary | |
|---|---|
ACCEPTED
Status code (202) indicating that a request was accepted for processing, but was not completed. |
|
BAD_GATEWAY
Status code (502) indicating that the HTTP server received an invalid response from a server it consulted when acting as a proxy or gateway. |
|
BAD_REQUEST
Status code (400) indicating the request sent by the client was syntactically incorrect. |
|
CONFLICT
Status code (409) indicating that the request could not be completed due to a conflict with the current state of the resource. |
|
CONTINUE
Status code (100) indicating that the client can continue. |
|
CREATED
Status code (201) indicating that the request succeeded and created a new resource on the server. |
|
EXPECTATION_FAILED
Status code (417) indicating that the server could not meet the expectation given in the Expect request header. |
|
FAILED_DEPENDENCY
Status code (424) indicating that the method could not be performed on the resource because it depended on an action that had failed. |
|
FORBIDDEN
Status code (403) indicating that the server understood the request but refused to fulfill it. |
|
FOUND
Status code (302) indicating that the resource resides temporarily under a different URI. |
|
GATEWAY_TIMEOUT
Status code (504) indicating that the server did not receive a timely response from the upstream server while acting as a gateway or proxy. |
|
GONE
Status code (410) indicating that the resource is no longer available at the server and no forwarding address is known. |
|
HTTP_VERSION_NOT_SUPPORTED
Status code (505) indicating that the server does not support or refuses to support the HTTP protocol version that was used in the request message. |
|
INSUFFICIENT_STORAGE
Status code (507) indicating that the method could not be performed on the resource because the server is unable to store the representation needed to successfully complete the request. |
|
INTERNAL_SERVER_ERROR
Status code (500) indicating an error inside the HTTP server which prevented it from fulfilling the request. |
|
LENGTH_REQUIRED
Status code (411) indicating that the request cannot be handled without a defined Content-Length. |
|
LOCKED
Status code (423) indicating that the source or destination resource of a method is locked. |
|
METHOD_NOT_ALLOWED
Status code (405) indicating that the method specified in the Request-Line is not allowed for the resource identified by the Request-URI. |
|
MOVED_PERMANENTLY
Status code (301) indicating that the resource has permanently moved to a new location, and that future references should use a new URI with their requests. |
|
MOVED_TEMPORARILY
Status code (302) indicating that the resource has temporarily moved to another location, but that future references should still use the original URI to access the resource. |
|
MULTI_STATUS
Status code (207) indicating that the response requires providing status for multiple independent operations. |
|
MULTIPLE_CHOICES
Status code (300) indicating that the requested resource corresponds to any one of a set of representations, each with its own specific location. |
|
NO_CONTENT
Status code (204) indicating that the request succeeded but that there was no new information to return. |
|
NON_AUTHORITATIVE_INFORMATION
Status code (203) indicating that the meta information presented by the client did not originate from the server. |
|
NOT_ACCEPTABLE
Status code (406) indicating that the resource identified by the request is only capable of generating response entities which have content characteristics not acceptable according to the accept headers sent in the request. |
|
NOT_FOUND
Status code (404) indicating that the requested resource is not available. |
|
NOT_IMPLEMENTED
Status code (501) indicating the HTTP server does not support the functionality needed to fulfill the request. |
|
NOT_MODIFIED
Status code (304) indicating that a conditional GET operation found that the resource was available and not modified. |
|
OK
Status code (200) indicating that the request succeeded normally. |
|
PARTIAL_CONTENT
Status code (206) indicating that the server has fulfilled the partial GET request for the resource. |
|
PAYMENT_REQUIRED
Status code (402) reserved for future use. |
|
PRECONDITION_FAILED
Status code (412) indicating that the precondition given in one or more of the request-header fields evaluated to false when it was tested on the server. |
|
PROCESSING
Status code (102) indicating that the server has accepted the complete request, but has not yet completed it. |
|
PROXY_AUTHENTICATION_REQUIRED
Status code (407) indicating that the client MUST first authenticate itself with the proxy. |
|
REQUEST_ENTITY_TOO_LARGE
Status code (413) indicating that the server is refusing to process the request because the request entity is larger than the server is willing or able to process. |
|
REQUEST_TIMEOUT
Status code (408) indicating that the client did not produce a request within the time that the server was prepared to wait. |
|
REQUEST_URI_TOO_LONG
Status code (414) indicating that the server is refusing to service the request because the Request-URI is longer than the server is willing to interpret. |
|
REQUESTED_RANGE_NOT_SATISFIABLE
Status code (416) indicating that the server cannot serve the requested byte range. |
|
RESET_CONTENT
Status code (205) indicating that the agent SHOULD reset the document view which caused the request to be sent. |
|
SEE_OTHER
Status code (303) indicating that the response to the request can be found under a different URI. |
|
SERVICE_UNAVAILABLE
Status code (503) indicating that the HTTP server is temporarily overloaded, and unable to handle the request. |
|
SWITCHING_PROTOCOLS
Status code (101) indicating that the server is switching protocols according to the Upgrade header. |
|
TEMPORARY_REDIRECT
Status code (307) indicating that the requested resource resides temporarily under a different URI. |
|
UNAUTHORIZED
Status code (401) indicating that the request requires HTTP authentication. |
|
UNPROCESSABLE_ENTITY
Status code (422) indicating that the syntax of the request entity is correct, and that the server understands the content type of the request entity, but was unable to process the contained instructions. |
|
UNSUPPORTED_MEDIA_TYPE
Status code (415) indicating that the server is refusing to service the request because the entity of the request is in a format not supported by the requested resource for the requested method. |
|
USE_PROXY
Status code (305) indicating that the requested resource MUST be accessed through the proxy given by the Location field. |
|
| Method Summary | |
|---|---|
int |
getStatusCode()
Returns the HTTP/WebDAV status code. |
java.lang.String |
getStatusMessage()
Returns the status message. |
static DAVStatus |
getWebDAVStatus(int code)
Returns the DAVStatus corresponding to the given HTTP/WebDAV
status code, or null, if there is no DAVStatus
corresponding to the given status code. |
static DAVStatus |
getWebDAVStatus(java.lang.String message)
Returns the DAVStatus corresponding to the given status
message, or null, if there is no DAVStatus
corresponding to the given status message. |
java.lang.String |
toString()
returns a string representation of the DAVStatus which is
the status code followed by a space followed by the message. |
static DAVStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DAVStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DAVStatus CONTINUE
public static final DAVStatus SWITCHING_PROTOCOLS
public static final DAVStatus PROCESSING
public static final DAVStatus OK
public static final DAVStatus CREATED
public static final DAVStatus ACCEPTED
public static final DAVStatus NON_AUTHORITATIVE_INFORMATION
public static final DAVStatus NO_CONTENT
public static final DAVStatus RESET_CONTENT
public static final DAVStatus PARTIAL_CONTENT
public static final DAVStatus MULTI_STATUS
public static final DAVStatus MULTIPLE_CHOICES
public static final DAVStatus MOVED_PERMANENTLY
public static final DAVStatus MOVED_TEMPORARILY
public static final DAVStatus FOUND
public static final DAVStatus SEE_OTHER
public static final DAVStatus NOT_MODIFIED
public static final DAVStatus USE_PROXY
public static final DAVStatus TEMPORARY_REDIRECT
public static final DAVStatus BAD_REQUEST
public static final DAVStatus UNAUTHORIZED
public static final DAVStatus PAYMENT_REQUIRED
public static final DAVStatus FORBIDDEN
public static final DAVStatus NOT_FOUND
public static final DAVStatus METHOD_NOT_ALLOWED
public static final DAVStatus NOT_ACCEPTABLE
public static final DAVStatus PROXY_AUTHENTICATION_REQUIRED
public static final DAVStatus REQUEST_TIMEOUT
public static final DAVStatus CONFLICT
public static final DAVStatus GONE
public static final DAVStatus LENGTH_REQUIRED
public static final DAVStatus PRECONDITION_FAILED
public static final DAVStatus REQUEST_ENTITY_TOO_LARGE
public static final DAVStatus REQUEST_URI_TOO_LONG
public static final DAVStatus UNSUPPORTED_MEDIA_TYPE
public static final DAVStatus REQUESTED_RANGE_NOT_SATISFIABLE
public static final DAVStatus EXPECTATION_FAILED
public static final DAVStatus UNPROCESSABLE_ENTITY
public static final DAVStatus LOCKED
public static final DAVStatus FAILED_DEPENDENCY
public static final DAVStatus INTERNAL_SERVER_ERROR
public static final DAVStatus NOT_IMPLEMENTED
public static final DAVStatus BAD_GATEWAY
public static final DAVStatus SERVICE_UNAVAILABLE
public static final DAVStatus GATEWAY_TIMEOUT
public static final DAVStatus HTTP_VERSION_NOT_SUPPORTED
public static final DAVStatus INSUFFICIENT_STORAGE
| Method Detail |
|---|
public static final DAVStatus[] values()
for(DAVStatus c : DAVStatus.values())
System.out.println(c);
public static DAVStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namepublic final int getStatusCode()
public final java.lang.String getStatusMessage()
public static final DAVStatus getWebDAVStatus(int code)
DAVStatus corresponding to the given HTTP/WebDAV
status code, or null, if there is no DAVStatus
corresponding to the given status code.
code - the HTTP/WebDAV status code.
DAVStatus corresponding to the given HTTP/WebDAV
status code, or null, if there is no
DAVStatus corresponding to the given status code.public static final DAVStatus getWebDAVStatus(java.lang.String message)
DAVStatus corresponding to the given status
message, or null, if there is no DAVStatus
corresponding to the given status message.
message - the status message.
DAVStatus corresponding to the given status
message, or null, if there is no
DAVStatus corresponding to the given status message.public java.lang.String toString()
DAVStatus which is
the status code followed by a space followed by the message.
toString in class java.lang.Enum<DAVStatus>Enum.toString()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||