org.apache.commons.httpclient

Class HttpStatus


public class HttpStatus
extends java.lang.Object

Constants enumerating the HTTP status codes. All status codes defined in RFC1945 (HTTP/1.0, RFC2616 (HTTP/1.1), and RFC2518 (WebDAV) are supported.
Version:
$Id: HttpStatus.java 155418 2005-02-26 13:01:52Z dirkv $
Authors:
Unascribed
Mike Bowler
Jeff Dever TODO: Internationalization of reason phrases
See Also:
StatusLine

Field Summary

static int
SC_ACCEPTED
202 Accepted (HTTP/1.0 - RFC 1945)
static int
SC_BAD_GATEWAY
502 Bad Gateway (HTTP/1.0 - RFC 1945)
static int
SC_BAD_REQUEST
400 Bad Request (HTTP/1.1 - RFC 2616)
static int
SC_CONFLICT
409 Conflict (HTTP/1.1 - RFC 2616)
static int
SC_CONTINUE
100 Continue (HTTP/1.1 - RFC 2616)
static int
SC_CREATED
201 Created (HTTP/1.0 - RFC 1945)
static int
SC_EXPECTATION_FAILED
417 Expectation Failed (HTTP/1.1 - RFC 2616)
static int
SC_FAILED_DEPENDENCY
424 Failed Dependency (WebDAV - RFC 2518)
static int
SC_FORBIDDEN
403 Forbidden (HTTP/1.0 - RFC 1945)
static int
SC_GATEWAY_TIMEOUT
504 Gateway Timeout (HTTP/1.1 - RFC 2616)
static int
SC_GONE
410 Gone (HTTP/1.1 - RFC 2616)
static int
SC_HTTP_VERSION_NOT_SUPPORTED
505 HTTP Version Not Supported (HTTP/1.1 - RFC 2616)
static int
SC_INSUFFICIENT_SPACE_ON_RESOURCE
Static constant for a 419 error.
static int
SC_INSUFFICIENT_STORAGE
507 Insufficient Storage (WebDAV - RFC 2518)
static int
SC_INTERNAL_SERVER_ERROR
500 Server Error (HTTP/1.0 - RFC 1945)
static int
SC_LENGTH_REQUIRED
411 Length Required (HTTP/1.1 - RFC 2616)
static int
SC_LOCKED
423 Locked (WebDAV - RFC 2518)
static int
SC_METHOD_FAILURE
Static constant for a 420 error.
static int
SC_METHOD_NOT_ALLOWED
405 Method Not Allowed (HTTP/1.1 - RFC 2616)
static int
SC_MOVED_PERMANENTLY
301 Moved Permanently (HTTP/1.0 - RFC 1945)
static int
SC_MOVED_TEMPORARILY
302 Moved Temporarily (Sometimes Found) (HTTP/1.0 - RFC 1945)
static int
SC_MULTIPLE_CHOICES
300 Mutliple Choices (HTTP/1.1 - RFC 2616)
static int
SC_MULTI_STATUS
207 Multi-Status (WebDAV - RFC 2518) or 207 Partial Update OK (HTTP/1.1 - draft-ietf-http-v11-spec-rev-01?)
static int
SC_NON_AUTHORITATIVE_INFORMATION
203 Non Authoritative Information (HTTP/1.1 - RFC 2616)
static int
SC_NOT_ACCEPTABLE
406 Not Acceptable (HTTP/1.1 - RFC 2616)
static int
SC_NOT_FOUND
404 Not Found (HTTP/1.0 - RFC 1945)
static int
SC_NOT_IMPLEMENTED
501 Not Implemented (HTTP/1.0 - RFC 1945)
static int
SC_NOT_MODIFIED
304 Not Modified (HTTP/1.0 - RFC 1945)
static int
SC_NO_CONTENT
204 No Content (HTTP/1.0 - RFC 1945)
static int
SC_OK
200 OK (HTTP/1.0 - RFC 1945)
static int
SC_PARTIAL_CONTENT
206 Partial Content (HTTP/1.1 - RFC 2616)
static int
SC_PAYMENT_REQUIRED
402 Payment Required (HTTP/1.1 - RFC 2616)
static int
SC_PRECONDITION_FAILED
412 Precondition Failed (HTTP/1.1 - RFC 2616)
static int
SC_PROCESSING
102 Processing (WebDAV - RFC 2518)
static int
SC_PROXY_AUTHENTICATION_REQUIRED
407 Proxy Authentication Required (HTTP/1.1 - RFC 2616)
static int
SC_REQUESTED_RANGE_NOT_SATISFIABLE
416 Requested Range Not Satisfiable (HTTP/1.1 - RFC 2616)
static int
SC_REQUEST_TIMEOUT
408 Request Timeout (HTTP/1.1 - RFC 2616)
static int
SC_REQUEST_TOO_LONG
413 Request Entity Too Large (HTTP/1.1 - RFC 2616)
static int
SC_REQUEST_URI_TOO_LONG
414 Request-URI Too Long (HTTP/1.1 - RFC 2616)
static int
SC_RESET_CONTENT
205 Reset Content (HTTP/1.1 - RFC 2616)
static int
SC_SEE_OTHER
303 See Other (HTTP/1.1 - RFC 2616)
static int
SC_SERVICE_UNAVAILABLE
503 Service Unavailable (HTTP/1.0 - RFC 1945)
static int
SC_SWITCHING_PROTOCOLS
101 Switching Protocols (HTTP/1.1 - RFC 2616)
static int
SC_TEMPORARY_REDIRECT
307 Temporary Redirect (HTTP/1.1 - RFC 2616)
static int
SC_UNAUTHORIZED
401 Unauthorized (HTTP/1.0 - RFC 1945)
static int
SC_UNPROCESSABLE_ENTITY
422 Unprocessable Entity (WebDAV - RFC 2518)
static int
SC_UNSUPPORTED_MEDIA_TYPE
415 Unsupported Media Type (HTTP/1.1 - RFC 2616)
static int
SC_USE_PROXY
305 Use Proxy (HTTP/1.1 - RFC 2616)

Method Summary

static String
getStatusText(int statusCode)
Get the reason phrase for a particular status code.

Field Details

SC_ACCEPTED

public static final int SC_ACCEPTED
202 Accepted (HTTP/1.0 - RFC 1945)
Field Value:
202

SC_BAD_GATEWAY

public static final int SC_BAD_GATEWAY
502 Bad Gateway (HTTP/1.0 - RFC 1945)
Field Value:
502

SC_BAD_REQUEST

public static final int SC_BAD_REQUEST
400 Bad Request (HTTP/1.1 - RFC 2616)
Field Value:
400

SC_CONFLICT

public static final int SC_CONFLICT
409 Conflict (HTTP/1.1 - RFC 2616)
Field Value:
409

SC_CONTINUE

public static final int SC_CONTINUE
100 Continue (HTTP/1.1 - RFC 2616)
Field Value:
100

SC_CREATED

public static final int SC_CREATED
201 Created (HTTP/1.0 - RFC 1945)
Field Value:
201

SC_EXPECTATION_FAILED

public static final int SC_EXPECTATION_FAILED
417 Expectation Failed (HTTP/1.1 - RFC 2616)
Field Value:
417

SC_FAILED_DEPENDENCY

public static final int SC_FAILED_DEPENDENCY
424 Failed Dependency (WebDAV - RFC 2518)
Field Value:
424

SC_FORBIDDEN

public static final int SC_FORBIDDEN
403 Forbidden (HTTP/1.0 - RFC 1945)
Field Value:
403

SC_GATEWAY_TIMEOUT

public static final int SC_GATEWAY_TIMEOUT
504 Gateway Timeout (HTTP/1.1 - RFC 2616)
Field Value:
504

SC_GONE

public static final int SC_GONE
410 Gone (HTTP/1.1 - RFC 2616)
Field Value:
410

SC_HTTP_VERSION_NOT_SUPPORTED

public static final int SC_HTTP_VERSION_NOT_SUPPORTED
505 HTTP Version Not Supported (HTTP/1.1 - RFC 2616)
Field Value:
505

SC_INSUFFICIENT_SPACE_ON_RESOURCE

public static final int SC_INSUFFICIENT_SPACE_ON_RESOURCE
Static constant for a 419 error. 419 Insufficient Space on Resource (WebDAV - draft-ietf-webdav-protocol-05?) or 419 Proxy Reauthentication Required (HTTP/1.1 drafts?)
Field Value:
419

SC_INSUFFICIENT_STORAGE

public static final int SC_INSUFFICIENT_STORAGE
507 Insufficient Storage (WebDAV - RFC 2518)
Field Value:
507

SC_INTERNAL_SERVER_ERROR

public static final int SC_INTERNAL_SERVER_ERROR
500 Server Error (HTTP/1.0 - RFC 1945)
Field Value:
500

SC_LENGTH_REQUIRED

public static final int SC_LENGTH_REQUIRED
411 Length Required (HTTP/1.1 - RFC 2616)
Field Value:
411

SC_LOCKED

public static final int SC_LOCKED
423 Locked (WebDAV - RFC 2518)
Field Value:
423

SC_METHOD_FAILURE

public static final int SC_METHOD_FAILURE
Static constant for a 420 error. 420 Method Failure (WebDAV - draft-ietf-webdav-protocol-05?)
Field Value:
420

SC_METHOD_NOT_ALLOWED

public static final int SC_METHOD_NOT_ALLOWED
405 Method Not Allowed (HTTP/1.1 - RFC 2616)
Field Value:
405

SC_MOVED_PERMANENTLY

public static final int SC_MOVED_PERMANENTLY
301 Moved Permanently (HTTP/1.0 - RFC 1945)
Field Value:
301

SC_MOVED_TEMPORARILY

public static final int SC_MOVED_TEMPORARILY
302 Moved Temporarily (Sometimes Found) (HTTP/1.0 - RFC 1945)
Field Value:
302

SC_MULTIPLE_CHOICES

public static final int SC_MULTIPLE_CHOICES
300 Mutliple Choices (HTTP/1.1 - RFC 2616)
Field Value:
300

SC_MULTI_STATUS

public static final int SC_MULTI_STATUS
207 Multi-Status (WebDAV - RFC 2518) or 207 Partial Update OK (HTTP/1.1 - draft-ietf-http-v11-spec-rev-01?)
Field Value:
207

SC_NON_AUTHORITATIVE_INFORMATION

public static final int SC_NON_AUTHORITATIVE_INFORMATION
203 Non Authoritative Information (HTTP/1.1 - RFC 2616)
Field Value:
203

SC_NOT_ACCEPTABLE

public static final int SC_NOT_ACCEPTABLE
406 Not Acceptable (HTTP/1.1 - RFC 2616)
Field Value:
406

SC_NOT_FOUND

public static final int SC_NOT_FOUND
404 Not Found (HTTP/1.0 - RFC 1945)
Field Value:
404

SC_NOT_IMPLEMENTED

public static final int SC_NOT_IMPLEMENTED
501 Not Implemented (HTTP/1.0 - RFC 1945)
Field Value:
501

SC_NOT_MODIFIED

public static final int SC_NOT_MODIFIED
304 Not Modified (HTTP/1.0 - RFC 1945)
Field Value:
304

SC_NO_CONTENT

public static final int SC_NO_CONTENT
204 No Content (HTTP/1.0 - RFC 1945)
Field Value:
204

SC_OK

public static final int SC_OK
200 OK (HTTP/1.0 - RFC 1945)
Field Value:
200

SC_PARTIAL_CONTENT

public static final int SC_PARTIAL_CONTENT
206 Partial Content (HTTP/1.1 - RFC 2616)
Field Value:
206

SC_PAYMENT_REQUIRED

public static final int SC_PAYMENT_REQUIRED
402 Payment Required (HTTP/1.1 - RFC 2616)
Field Value:
402

SC_PRECONDITION_FAILED

public static final int SC_PRECONDITION_FAILED
412 Precondition Failed (HTTP/1.1 - RFC 2616)
Field Value:
412

SC_PROCESSING

public static final int SC_PROCESSING
102 Processing (WebDAV - RFC 2518)
Field Value:
102

SC_PROXY_AUTHENTICATION_REQUIRED

public static final int SC_PROXY_AUTHENTICATION_REQUIRED
407 Proxy Authentication Required (HTTP/1.1 - RFC 2616)
Field Value:
407

SC_REQUESTED_RANGE_NOT_SATISFIABLE

public static final int SC_REQUESTED_RANGE_NOT_SATISFIABLE
416 Requested Range Not Satisfiable (HTTP/1.1 - RFC 2616)
Field Value:
416

SC_REQUEST_TIMEOUT

public static final int SC_REQUEST_TIMEOUT
408 Request Timeout (HTTP/1.1 - RFC 2616)
Field Value:
408

SC_REQUEST_TOO_LONG

public static final int SC_REQUEST_TOO_LONG
413 Request Entity Too Large (HTTP/1.1 - RFC 2616)
Field Value:
413

SC_REQUEST_URI_TOO_LONG

public static final int SC_REQUEST_URI_TOO_LONG
414 Request-URI Too Long (HTTP/1.1 - RFC 2616)
Field Value:
414

SC_RESET_CONTENT

public static final int SC_RESET_CONTENT
205 Reset Content (HTTP/1.1 - RFC 2616)
Field Value:
205

SC_SEE_OTHER

public static final int SC_SEE_OTHER
303 See Other (HTTP/1.1 - RFC 2616)
Field Value:
303

SC_SERVICE_UNAVAILABLE

public static final int SC_SERVICE_UNAVAILABLE
503 Service Unavailable (HTTP/1.0 - RFC 1945)
Field Value:
503

SC_SWITCHING_PROTOCOLS

public static final int SC_SWITCHING_PROTOCOLS
101 Switching Protocols (HTTP/1.1 - RFC 2616)
Field Value:
101

SC_TEMPORARY_REDIRECT

public static final int SC_TEMPORARY_REDIRECT
307 Temporary Redirect (HTTP/1.1 - RFC 2616)
Field Value:
307

SC_UNAUTHORIZED

public static final int SC_UNAUTHORIZED
401 Unauthorized (HTTP/1.0 - RFC 1945)
Field Value:
401

SC_UNPROCESSABLE_ENTITY

public static final int SC_UNPROCESSABLE_ENTITY
422 Unprocessable Entity (WebDAV - RFC 2518)
Field Value:
422

SC_UNSUPPORTED_MEDIA_TYPE

public static final int SC_UNSUPPORTED_MEDIA_TYPE
415 Unsupported Media Type (HTTP/1.1 - RFC 2616)
Field Value:
415

SC_USE_PROXY

public static final int SC_USE_PROXY
305 Use Proxy (HTTP/1.1 - RFC 2616)
Field Value:
305

Method Details

getStatusText

public static String getStatusText(int statusCode)
Get the reason phrase for a particular status code. This method always returns the English text as specified in the relevent RFCs and is not internationalized.
Parameters:
statusCode - the numeric status code
Returns:
the reason phrase associated with the given status code or null if the status code is not recognized. TODO: getStatusText should be called getReasonPhrase to match RFC

Copyright (c) 1999-2005 - Apache Software Foundation