public enum HttpStatus extends Enum<HttpStatus>
| Enum Constant and Description |
|---|
ACCEPTED
The request has been accepted for processing, but the processing has not been completed.
|
ALREADY_REPORTED
WebDAV; RFC 5842
|
BAD_GATEWAY
The server was acting as a gateway or proxy and received an invalid response from the upstream server.
|
BAD_REQUEST
The request cannot be fulfilled due to bad syntax.
|
BANDWIDTH_LIMIT_EXCEEDED
This status code, while used by many servers, is not specified in any RFCs.
|
BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS
A Microsoft extension.
|
CERT_ERROR
Nginx internal code used when SSL client certificate error occured to distinguish it from 4XX in a log and an
error page redirection.
|
CLIENT_CLOSED_REQUEST
Used in Nginx logs to indicate when the connection has been closed by client while the server is still processing
its request, making server unable to send a status code back.
|
CONFLICT
Indicates that the request could not be processed because of conflict in the request, such as an edit conflict.
|
CONTINUE
This means that the server has received the request headers, and that the client should proceed to send the
request body (in the case of a request for which a body needs to be sent; for example, a POST request).
|
CREATED
The request has been fulfilled and resulted in a new resource being created.
|
ENHANCE_YOUR_CALM
Not part of the HTTP standard, but returned by the Twitter Search and Trends API when the client is being rate
limited.
|
EXPECTATION_FAILED
The server cannot meet the requirements of the Expect request-header field.
|
FORBIDDEN
The request was a valid request, but the server is refusing to respond to it.
|
FOUND
This is an example of industry practice contradicting the standard.
|
GATEWAY_TIMEOUT
The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.
|
GONE
Indicates that the resource requested is no longer available and will not be available again.
|
HTTP_TO_HTTPS
Nginx internal code used for the plain HTTP requests that are sent to HTTPS port to distinguish it from 4XX in a
log and an error page redirection.
|
HTTP_VERSION_NOT_SUPPORTED
The server does not support the HTTP protocol version used in the request.
|
I_M_A_TEAPOT
This code was defined in 1998 as one of the traditional IETF April Fools' jokes, in RFC 2324, Hyper Text Coffee
Pot Control Protocol, and is not expected to be implemented by actual HTTP servers.
|
IM_USED
RFC 3229
|
INSUFFICIENT_STORAGE
WebDAV; RFC 4918
|
INTERNAL_SERVER_ERROR
A generic error message, given when no more specific message is suitable
|
LENGTH_REQUIRED
The request did not specify the length of its content, which is required by the requested resource.
|
LOCKED
The resource that is being accessed is locked.
|
LOOP_DETECTED
WebDAV; RFC 5842
|
METHOD_FAILURE
Indicates the method was not executed on a particular resource within its scope because some part of the method's
execution failed causing the entire method to be aborted.
|
METHOD_NOT_ALLOWED
A request was made of a resource using a request method not supported by that resource; for example, using GET on
a form which requires data to be presented via POST, or using PUT on a read-only resource.
|
MOVED_PERMANENTLY
This and all future requests should be directed to the given URI.
|
MULTI_STATUS
WebDAV; RFC 4918
|
MULTIPLE_CHOICES
Indicates multiple options for the resource that the client may follow.
|
NETWORK_AUTHENTICATION_REQUIRED
RFC 6585
|
NETWORK_CONNECT_TIMEOUT_ERROR
This status code is not specified in any RFCs, but is used by Microsoft Corp.
|
NETWORK_READ_TIMEOUT_ERROR
This status code is not specified in any RFCs, but is used by Microsoft Corp.
|
NO_CERT
Nginx internal code used when client didn't provide certificate to distinguish it from 4XX in a log and an error
page redirection.
|
NO_CONTENT
The server successfully processed the request, but is not returning any content.
|
NO_RESPONSE
Used in Nginx logs to indicate that the server has returned no information to the client and closed the connection (useful as a deterrent for malware).
|
NON_AUTHORITATIVE_INFORMATION
The server successfully processed the request, but is returning information that may be from another source.
|
NOT_ACCEPTABLE
The requested resource is only capable of generating content not acceptable according to the Accept headers sent
in the request.
|
NOT_EXTENDED
RFC 2774
|
NOT_FOUND
The requested resource could not be found but may be available again in the future.
|
NOT_IMPLEMENTED
The server either does not recognize the request method, or it lacks the ability to fulfill the request.
|
NOT_MODIFIED
Indicates the resource has not been modified since last requested.
|
OK
Standard response for successful HTTP requests.
|
PARTIAL_CONTENT
The server is delivering only part of the resource due to a range header sent by the client.
|
PAYMENT_REQUIRED
Reserved for future use.
|
PERMANENT_REDIRECT
The request, and all future requests should be repeated using another URI.
|
PRECONDITION_FAILED
The server does not meet one of the preconditions that the requester put on the request.
|
PRECONDITION_REQUIRED
The origin server requires the request to be conditional.
|
PROCESSING
WebDAV: RFC 2518
|
PROXY_AUTHENTICATION_REQUIRED
The client must first authenticate itself with the proxy.
|
REQUEST_ENTITY_TOO_LARGE
The request is larger than the server is willing or able to process.
|
REQUEST_HEADER_FIELDS_TOO_LARGE
The server is unwilling to process the request because either an individual header field, or all the header
fields collectively, are too large.[18]
|
REQUEST_HEADER_TOO_LARGE
Nginx internal code similar to 431 but it was introduced earlier.
|
REQUEST_RANGE_NOT_SATISFIABLE
The client has asked for a portion of the file, but the server cannot supply that portion.
|
REQUEST_TIMEOUT
The server timed out waiting for the request.
|
REQUEST_URI_TOO_LONG
The URI provided was too long for the server to process.
|
RESET_CONTENT
The server successfully processed the request, but is not returning any content.
|
RETRY_WITH
A Microsoft extension.
|
SEE_OTHER
The response to the request can be found under another URI using a GET method.
|
SERVICE_UNAVAILABLE
The server is currently unavailable (because it is overloaded or down for maintenance).Generally, this is a
temporary state.
|
SWITCH_PROXY
No longer used.
|
SWITCHING_PROTOCOLS
This means the requester has asked the server to switch protocols and the server is acknowledging that it will
do so.
|
TEMPORARY_REDIRECT
In this case, the request should be repeated with another URI; however, future requests should still use the
original URI.
|
TOO_MANY_REQUESTS
The user has sent too many requests in a given amount of time.
|
UNAUTHORIZED
Similar to 403 Forbidden, but specifically for use when authentication is required and has failed or has not yet
been provided.
|
UNAVAILABLE_FOR_LEGAL_REASONS
Defined in the internet draft "A New HTTP Status Code for Legally-restricted Resources".
|
UNORDERED_COLLECTION
Defined in drafts of "WebDAV Advanced Collections Protocol",[15] but not present in "Web Distributed Authoring
and Versioning (WebDAV) Ordered Collections Protocol".[16]
|
UNPROCESSABLE_ENTITY
The request was well-formed but was unable to be followed due to semantic errors.
|
UNSUPPORTED_MEDIA_TYPE
The request entity has a media type which the server or resource does not support.
|
UPGRADE_REQUIRED
The client should switch to a different protocol such as TLS/1.0.
|
USE_PROXY |
VARIANT_ALSO_NEGOTIATES
RFC 2295
|
| Modifier and Type | Field and Description |
|---|---|
int |
code |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static HttpStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpStatus CONTINUE
This means that the server has received the request headers, and that the client should proceed to send the request body (in the case of a request for which a body needs to be sent; for example, a POST request).
If the request body is large, sending it to a server when a request has already been rejected based upon inappropriate headers is inefficient. To have a server check if the request could be accepted based on the request's headers alone, a client must send Expect: 100-continue as a header in its initial request and check if a 100 Continue status code is received in response before continuing (or receive 417 Expectation Failed and not continue).
public static final HttpStatus SWITCHING_PROTOCOLS
public static final HttpStatus PROCESSING
WebDAV: RFC 2518
As a WebDAV request may contain many sub-requests involving file operations, it may take a long time to complete the request. This code indicates that the server has received and is processing the request, but no response is available yet. This prevents the client from timing out and assuming the request was lost.
public static final HttpStatus OK
public static final HttpStatus CREATED
public static final HttpStatus ACCEPTED
public static final HttpStatus NON_AUTHORITATIVE_INFORMATION
public static final HttpStatus NO_CONTENT
public static final HttpStatus RESET_CONTENT
public static final HttpStatus PARTIAL_CONTENT
public static final HttpStatus MULTI_STATUS
WebDAV; RFC 4918
The message body that follows is an XML message and can contain a number of separate response codes, depending on how many sub-requests were made.
public static final HttpStatus ALREADY_REPORTED
WebDAV; RFC 5842
The members of a DAV binding have already been enumerated in a previous reply to this request, and are not being included again.
public static final HttpStatus IM_USED
RFC 3229
The server has fulfilled a GET request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance.
public static final HttpStatus MULTIPLE_CHOICES
public static final HttpStatus MOVED_PERMANENTLY
public static final HttpStatus FOUND
public static final HttpStatus SEE_OTHER
public static final HttpStatus NOT_MODIFIED
public static final HttpStatus USE_PROXY
public static final HttpStatus SWITCH_PROXY
public static final HttpStatus TEMPORARY_REDIRECT
public static final HttpStatus PERMANENT_REDIRECT
public static final HttpStatus BAD_REQUEST
public static final HttpStatus UNAUTHORIZED
public static final HttpStatus PAYMENT_REQUIRED
public static final HttpStatus FORBIDDEN
public static final HttpStatus NOT_FOUND
public static final HttpStatus METHOD_NOT_ALLOWED
public static final HttpStatus NOT_ACCEPTABLE
public static final HttpStatus PROXY_AUTHENTICATION_REQUIRED
public static final HttpStatus REQUEST_TIMEOUT
public static final HttpStatus CONFLICT
public static final HttpStatus GONE
public static final HttpStatus LENGTH_REQUIRED
public static final HttpStatus PRECONDITION_FAILED
public static final HttpStatus REQUEST_ENTITY_TOO_LARGE
public static final HttpStatus REQUEST_URI_TOO_LONG
public static final HttpStatus UNSUPPORTED_MEDIA_TYPE
public static final HttpStatus REQUEST_RANGE_NOT_SATISFIABLE
public static final HttpStatus EXPECTATION_FAILED
public static final HttpStatus I_M_A_TEAPOT
public static final HttpStatus ENHANCE_YOUR_CALM
public static final HttpStatus UNPROCESSABLE_ENTITY
public static final HttpStatus LOCKED
public static final HttpStatus METHOD_FAILURE
public static final HttpStatus UNORDERED_COLLECTION
public static final HttpStatus UPGRADE_REQUIRED
public static final HttpStatus PRECONDITION_REQUIRED
public static final HttpStatus TOO_MANY_REQUESTS
public static final HttpStatus REQUEST_HEADER_FIELDS_TOO_LARGE
public static final HttpStatus NO_RESPONSE
public static final HttpStatus RETRY_WITH
public static final HttpStatus BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS
public static final HttpStatus UNAVAILABLE_FOR_LEGAL_REASONS
public static final HttpStatus REQUEST_HEADER_TOO_LARGE
public static final HttpStatus CERT_ERROR
public static final HttpStatus NO_CERT
public static final HttpStatus HTTP_TO_HTTPS
public static final HttpStatus CLIENT_CLOSED_REQUEST
public static final HttpStatus INTERNAL_SERVER_ERROR
public static final HttpStatus NOT_IMPLEMENTED
public static final HttpStatus BAD_GATEWAY
public static final HttpStatus SERVICE_UNAVAILABLE
public static final HttpStatus GATEWAY_TIMEOUT
public static final HttpStatus HTTP_VERSION_NOT_SUPPORTED
public static final HttpStatus VARIANT_ALSO_NEGOTIATES
RFC 2295
Transparent content negotiation for the request results in a circular reference.
public static final HttpStatus INSUFFICIENT_STORAGE
WebDAV; RFC 4918
The server is unable to store the representation needed to complete the request.[4]
public static final HttpStatus LOOP_DETECTED
WebDAV; RFC 5842
The server detected an infinite loop while processing the request (sent in lieu of 208).
public static final HttpStatus BANDWIDTH_LIMIT_EXCEEDED
public static final HttpStatus NOT_EXTENDED
RFC 2774
Further extensions to the request are required for the server to fulfill it.
public static final HttpStatus NETWORK_AUTHENTICATION_REQUIRED
RFC 6585
The client needs to authenticate to gain network access. Intended for use by intercepting proxies used to control access to the network (e.g. "captive portals" used to require agreement to Terms of Service before granting full Internet access via a Wi-Fi hotspot).
public static final HttpStatus NETWORK_READ_TIMEOUT_ERROR
public static final HttpStatus NETWORK_CONNECT_TIMEOUT_ERROR
public static HttpStatus[] values()
for (HttpStatus c : HttpStatus.values()) System.out.println(c);
public static HttpStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<HttpStatus>Copyright © 2012–2018 Atlassian. All rights reserved.