Field Summary |
|
final public static int | SC_ACCEPTED Status code (202) indicating that a request was accepted for
processing, but was not completed. |
final public static int | SC_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. |
final public static int | SC_BAD_REQUEST Status code (400) indicating the request sent by the client was
syntactically incorrect. |
final public static int | SC_CREATED Status code (201) indicating the request succeeded and created
a new resource on the server. |
final public static int | SC_FORBIDDEN Status code (403) indicating the server understood the request
but refused to fulfill it. |
final public static int | SC_INTERNAL_SERVER_ERROR Status code (500) indicating an error inside the HTTP service
which prevented it from fulfilling the request. |
final public static int | SC_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. |
final public static int | SC_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. |
final public static int | SC_NOT_FOUND Status code (404) indicating that the requested resource is not
available. |
final public static int | SC_NOT_IMPLEMENTED Status code (501) indicating the HTTP service does not support
the functionality needed to fulfill the request. |
final public static int | SC_NOT_MODIFIED Status code (304) indicating that a conditional GET operation
found that the resource was available and not modified. |
final public static int | SC_NO_CONTENT Status code (204) indicating that the request succeeded but that
there was no new information to return. |
final public static int | SC_OK Status code (200) indicating the request succeeded normally. |
final public static int | SC_SERVICE_UNAVAILABLE Status code (503) indicating that the HTTP service is
temporarily overloaded, and unable to handle the request. |
final public static int | SC_UNAUTHORIZED Status code (401) indicating that the request requires HTTP
authentication. |