|
static const StatusCode | CONTINUE { "Continue" , 100 , "Continue with the request" } |
|
static const StatusCode | SWITCHING_PROTOCOLS { "Switching Protocols" , 101 , "Switching protocols" } |
|
static const StatusCode | PROCESSING { "Processing" , 102 , "The server has accepted the request but has not yet completed it" } |
|
static const StatusCode | EARLY_HINTS { "Early Hints" , 103 , "The server is likely to send a final response with the header fields included in the informational response" } |
|
static const StatusCode | OK { "Ok" , 200 , "Request fulfilled" } |
|
static const StatusCode | CREATED { "Created" , 201 , "Resource has been created" } |
|
static const StatusCode | ACCEPTED { "Accepted" , 202 , "Request accepted for processing" } |
|
static const StatusCode | NON_AUTHORITATIVE_INFORMATION { "Non-Authoritative Information" , 203 , "Request fulfilled but has been modified" } |
|
static const StatusCode | NO_CONTENT { "No Content" , 204 , "Request fulfilled, no entity-body returned" } |
|
static const StatusCode | RESET_CONTENT { "Reset Content" , 205 , "Request fulfilled, user agent should reset the document view" } |
|
static const StatusCode | PARTIAL_CONTENT { "Partial Content" , 206 , "Partial GET request fulfilled" } |
|
static const StatusCode | MULTI_STATUS { "Multi Status" , 207 , "Statuses for multiple operations" } |
|
static const StatusCode | ALREADY_REPORTED { "Already reported" , 208 , "One of the requested resources has already been reported" } |
|
static const StatusCode | IM_USED { "IM Used" , 226 , "The server has fulfilled a GET request for the resource, and the response is a representation of the result of one or more instance-manipulation applied to the current instance" } |
|
static const StatusCode | MULTIPLE_CHOICES { "Multiple Choices" , 300 , "The requested resource corresponds to any one of a set of representations" } |
|
static const StatusCode | MOVED_PERMANENTLY { "Moved Permanently" , 301 , "The requested resource has been assigned a new permanent URI" } |
|
static const StatusCode | FOUND { "Found" , 302 , "The requested resource has been delivered but resides temporarily under a different URI" } |
|
static const StatusCode | SEE_OTHER { "See Other" , 303 , "The requested resource can be found under a different URI" } |
|
static const StatusCode | NOT_MODIFIED { "Not Modified" , 304 , "Document has not been modified" } |
|
static const StatusCode | USE_PROXY { "Use Proxy" , 305 , "The requested resource must be accessed through the given proxy" } |
|
static const StatusCode | TEMPORARY_REDIRECT { "Temporary Redirect" , 307 , "The requested resource resides temporarily under a different URI" } |
|
static const StatusCode | PERMANENT_REDIRECT { "Permanent Redirect" , 308 , "The requested resource resides permanently under a different URI" } |
|
static const StatusCode | BAD_REQUEST { "Bad Request" , 400 , "Request could not be understood due to malformed syntax" } |
|
static const StatusCode | UNAUTHORIZED { "Unauthorized" , 401 , "Request requires user authentication" } |
|
static const StatusCode | PAYMENT_REQUIRED { "Payment Required" , 402 , "[[This code is reserved for future use]]" } |
|
static const StatusCode | FORBIDDEN { "Forbidden" , 403 , "Request understood but the server refuses to fulfill it" } |
|
static const StatusCode | NOT_FOUND { "Not Found" , 404 , "The requested resource has not been found" } |
|
static const StatusCode | METHOD_NOT_ALLOWED { "Method Not Allowed" , 405 , "The specified method is not allowed for the identified resource" } |
|
static const StatusCode | NOT_ACCEPTABLE { "Not Acceptable" , 406 , "Responses would not be acceptable according to accept headers in the request" } |
|
static const StatusCode | PROXY_AUTHENTICATION_REQUIRED { "Proxy Authentication Required" , 407 , "Client must first authenticate itself with the proxy" } |
|
static const StatusCode | REQUEST_TIMEOUT { "Request Timeout" , 408 , "Client did not produce a request within the time the server was prepared to wait" } |
|
static const StatusCode | CONFLICT { "Conflict" , 409 , "Request could not be completed due to a conflict with the current state of the resource" } |
|
static const StatusCode | GONE { "Gone" , 410 , "The requested resource is no longer available" } |
|
static const StatusCode | LENGTH_REQUIRED { "Length Required" , 411 , "Content-Length header missing" } |
|
static const StatusCode | PRECONDITION_FAILED { "Precondition Failed" , 412 , "Precondition given in one or more request-header fields evaluated to false" } |
|
static const StatusCode | REQUEST_ENTITY_TOO_LARGE { "Request Entity Too Large" , 413 , "Provided request entity is larger than the server is willing/able to process" } |
|
static const StatusCode | REQUEST_URI_TOO_LONG { "Request-URI Too Long" , 414 , "Request-URI is longer than the server is willing to process" } |
|
static const StatusCode | UNSUPPORTED_MEDIA_TYPE { "Unsupported Media Type" , 415 , "The format of the entity of the request is not supported" } |
|
static const StatusCode | REQUESTED_RANGE_NOT_SATISFIABLE { "Requested Range Not Satisfiable" , 416 , "Request Range could not be satisfied" } |
|
static const StatusCode | EXPECTATION_FAILED { "Expectation Failed" , 417 , "Request Expect could not be met" } |
|
static const StatusCode | TEAPOT { "I'm a teapot" , 418 , "I'm a teapot" } |
|
static const StatusCode | MISDIRECTED_REQUEST { "Misdirected Request" , 421 , "Request was directed at a server that is not able to produce a response" } |
|
static const StatusCode | UNPROCESSABLE_ENTITY { "Unprocessable Entity" , 422 , "The server understands the content type and the syntax is correct but was unable to process the contained instructions" } |
|
static const StatusCode | LOCKED { "Locked" , 423 , "The requested resource is locked" } |
|
static const StatusCode | FAILED_DEPENDENCY { "Failed Dependency" , 424 , "The server could not process the requested action because it depends on an action that failed" } |
|
static const StatusCode | TOO_EARLY { "Too Early" , 425 , "The server is unwilling to risk processing a request that might be replayed" } |
|
static const StatusCode | UPGRADE_REQUIRED { "Upgrade Required" , 426 , "The server refuses to perform the request using the current protocol but might if the client upgrades to a different protocol" } |
|
static const StatusCode | PRECONDITION_REQUIRED { "Precondition Required" , 428 , "The server requires the request to be conditional (missing If-Match header)" } |
|
static const StatusCode | TOO_MANY_REQUESTS { "Too Many Requests" , 429 , "The user has sent too many requests in a given amount of time" } |
|
static const StatusCode | REQUEST_HEADER_FIELDS_TOO_LARGE { "Request Header Fields Too Large" , 431 , "The server is unwilling to process the request because its header fields are too large" } |
|
static const StatusCode | UNAVAILABLE_FOR_LEGAL_REASONS { "Unavailable For Legal Reasons" , 451 , "The requested resource is unavailable for legal reasons" } |
|
static const StatusCode | INTERNAL_SERVER_ERROR { "Internal Server Error" , 500 , "Unexpected server error" } |
|
static const StatusCode | NOT_IMPLEMENTED { "Not Implemented" , 501 , "The server does not support the functionality required to fulfill the request" } |
|
static const StatusCode | BAD_GATEWAY { "Bad Gateway" , 502 , "The server, acting as a gateway/proxy, received an invalid response from the upstream server it accessed in attempting to fulfill the request" } |
|
static const StatusCode | SERVICE_UNAVAILABLE { "Service Unavailable" , 503 , "The server is currently unable to handle the request due to a temporary overloading or maintenance" } |
|
static const StatusCode | GATEWAY_TIMEOUT { "Gateway Timeout" , 504 , "The server, acting as a gateway/proxy, did not receive a timely response from the upstream server it accessed in attempting to fulfill the request" } |
|
static const StatusCode | HTTP_VERSION_NOT_SUPPORTED { "HTTP Version Not Supported" , 505 , "The server does not support, or refuses to support, the HTTP protocol version that was used in the request" } |
|
static const StatusCode | VARIANT_ALSO_NEGOTIATES { "Variant Also Negotiates" , 506 , "The chosen variant resource is configured to engage in transparent content negotiation and is therefore not a proper end point in the negotiation process" } |
|
static const StatusCode | INSUFFICIENT_STORAGE { "Insufficient Storage" , 507 , "The server was unable to process the request because it could not store the representation needed to successfully complete the request" } |
|
static const StatusCode | LOOP_DETECTED { "Loop Detected" , 508 , "The server terminated an operation because it encountered an infinite loop while processing a request" } |
|
static const StatusCode | BANDWIDTH_LIMIT_EXCEEDED { "Loop Detected" , 509 , "The amount of bandwidth allocated has been reached" } |
|
static const StatusCode | NOT_EXTENDED { "Not Extended" , 510 , "The policy for accessing the resource has not been met in the request" } |
|
static const StatusCode | NETWORK_AUTHENTICATION_REQUIRED { "Network Authentication Required" , 511 , "The client needs to authenticate to gain network access" } |
|