ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StatusCode.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\HTTP;
20 
29 interface StatusCode
30 {
31  // [Informational 1xx]
32 
33  public const HTTP_CONTINUE = 100;
34  public const HTTP_SWITCHING_PROTOCOLS = 101;
35  // [Successful 2xx]
36 
37  public const HTTP_OK = 200;
38  public const HTTP_CREATED = 201;
39  public const HTTP_ACCEPTED = 202;
41  public const HTTP_NO_CONTENT = 204;
42  public const HTTP_RESET_CONTENT = 205;
43  public const HTTP_PARTIAL_CONTENT = 206;
44  // [Redirection 3xx]
45 
46  public const HTTP_MULTIPLE_CHOICES = 300;
47  public const HTTP_MOVED_PERMANENTLY = 301;
48  public const HTTP_FOUND = 302;
49  public const HTTP_SEE_OTHER = 303;
50  public const HTTP_NOT_MODIFIED = 304;
51  public const HTTP_USE_PROXY = 305;
52  public const HTTP_UNUSED = 306;
53  public const HTTP_TEMPORARY_REDIRECT = 307;
54  // [Client Error 4xx]
55 
56  public const HTTP_BAD_REQUEST = 400;
57  public const HTTP_UNAUTHORIZED = 401;
58  public const HTTP_PAYMENT_REQUIRED = 402;
59  public const HTTP_FORBIDDEN = 403;
60  public const HTTP_NOT_FOUND = 404;
61  public const HTTP_METHOD_NOT_ALLOWED = 405;
62  public const HTTP_NOT_ACCEPTABLE = 406;
64  public const HTTP_REQUEST_TIMEOUT = 408;
65  public const HTTP_CONFLICT = 409;
66  public const HTTP_GONE = 410;
67  public const HTTP_LENGTH_REQUIRED = 411;
68  public const HTTP_PRECONDITION_FAILED = 412;
69  public const HTTP_REQUEST_ENTITY_TOO_LARGE = 413;
70  public const HTTP_REQUEST_URI_TOO_LONG = 414;
71  public const HTTP_UNSUPPORTED_MEDIA_TYPE = 415;
73  public const HTTP_EXPECTATION_FAILED = 417;
74  // [Server Error 5xx]
75 
76  public const HTTP_INTERNAL_SERVER_ERROR = 500;
77  public const HTTP_NOT_IMPLEMENTED = 501;
78  public const HTTP_BAD_GATEWAY = 502;
79  public const HTTP_SERVICE_UNAVAILABLE = 503;
80  public const HTTP_GATEWAY_TIMEOUT = 504;
81  public const HTTP_VERSION_NOT_SUPPORTED = 505;
82 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const HTTP_REQUEST_ENTITY_TOO_LARGE
Definition: StatusCode.php:69
const HTTP_INTERNAL_SERVER_ERROR
Definition: StatusCode.php:76
const HTTP_UNSUPPORTED_MEDIA_TYPE
Definition: StatusCode.php:71
const HTTP_VERSION_NOT_SUPPORTED
Definition: StatusCode.php:81
const HTTP_PROXY_AUTHENTICATION_REQUIRED
Definition: StatusCode.php:63
const HTTP_SERVICE_UNAVAILABLE
Definition: StatusCode.php:79
const HTTP_NONAUTHORITATIVE_INFORMATION
Definition: StatusCode.php:40
const HTTP_REQUESTED_RANGE_NOT_SATISFIABLE
Definition: StatusCode.php:72
const HTTP_REQUEST_URI_TOO_LONG
Definition: StatusCode.php:70
const HTTP_PRECONDITION_FAILED
Definition: StatusCode.php:68
const HTTP_SWITCHING_PROTOCOLS
Definition: StatusCode.php:34