HttpCode¶
Doc Home > API Index > web > HttpCode
Inheritance¶
sys::Obj web::HttpCode
public final class HttpCode
Common HTTP Status Codes.
Based on RFC 2616 (HTTP/1.1 protocol)
http://www.ietf.org/rfc/rfc2616.txt?number=2616
Fields¶
accepted¶
public static const define int accepted
202: Accepted
badGateway¶
public static const define int badGateway
502: Bad Gateway
badHttpVersion¶
public static const define int badHttpVersion
505: HTTP Version Not Supported
badRange¶
public static const define int badRange
416: Requested Range Not Satisfiable
badRequest¶
public static const define int badRequest
400: Bad Request
conflict¶
public static const define int conflict
409: Conflict
cont¶
public static const define int cont
100: Continue
created¶
public static const define int created
201: Created
expectationFailed¶
public static const define int expectationFailed
417: Expectation Failed
forbidden¶
public static const define int forbidden
403: Forbidden
found¶
public static const define int found
302: Found (sometimes known as Moved Temporarily")
gatewayTimeout¶
public static const define int gatewayTimeout
504: Gateway Timeout
gone¶
public static const define int gone
410: Gone
internalError¶
public static const define int internalError
500: Internal Server Error
lengthRequired¶
public static const define int lengthRequired
411: Length Required
methodNotAllowed¶
public static const define int methodNotAllowed
405: Method Not Allowed
movedPermanently¶
public static const define int movedPermanently
301: Moved Permanently
multipleChoice¶
public static const define int multipleChoice
300: Multiple Choices
noContent¶
public static const define int noContent
204: No Content
notAcceptable¶
public static const define int notAcceptable
406: Not Acceptable
notAuthoritative¶
public static const define int notAuthoritative
203: Non-Authoritative Information
notFound¶
public static const define int notFound
404: Not Found
notModified¶
public static const define int notModified
304: Not Modified
ok¶
public static const define int ok
200: OK
partial¶
public static const define int partial
206: Partial Content
preconditionFailed¶
public static const define int preconditionFailed
412: Precondition Failed
proxyAuthRequired¶
public static const define int proxyAuthRequired
407: Proxy Authentication Required
reset¶
public static const define int reset
205: Reset Content
seeOther¶
public static const define int seeOther
303: See Other
serviceUnavailable¶
public static const define int serviceUnavailable
503: Service Unavailable
switchingProtocols¶
public static const define int switchingProtocols
101: Switching Protocols
temporaryRedirect¶
public static const define int temporaryRedirect
307: Temporary Redirect
timeout¶
public static const define int timeout
408: Request Timeout
tooLarge¶
public static const define int tooLarge
413: Request Entity Too Large
unauthorized¶
public static const define int unauthorized
401: Unauthorized
unsupportedMedia¶
public static const define int unsupportedMedia
415: Unsupported Media Type
uriTooLong¶
public static const define int uriTooLong
414: Request-URI Too Long
useProxy¶
public static const define int useProxy
305: Use Proxy
Doc Home > API Index > web > HttpCode