1 <?php
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
17
18 namespace OpenCloud\Common\Constants;
19
20 21 22 23 24 25
26 class Header
27 {
28 const ACCEPT = 'Accept';
29 const ACCEPT_CHARSET = 'Accept-Charset';
30 const ACCEPT_ENCODING = 'Accept-Encoding';
31 const ACCEPT_LANGUAGE = 'Accept-Language';
32 const ACCEPT_RANGES = 'Accept-Ranges';
33 const AGE = 'Age';
34 const ALLOW = 'Allow';
35 const AUTHORIZATION = 'Authorization';
36 const CACHE_CONTROL = 'Cache-Control';
37 const CONNECTION = 'Connection';
38 const CONTENT_ENCODING = 'Content-Encoding';
39 const CONTENT_LANGUAGE = 'Content-Language';
40 const CONTENT_LENGTH = 'Content-Length';
41 const CONTENT_LOCATION = 'Content-Location';
42 const CONTENT_MD5 = 'Content-MD5';
43 const CONTENT_RANGE = 'Content-Range';
44 const CONTENT_TYPE = 'Content-Type';
45 const DATE = 'Date';
46 const ETAG = 'ETag';
47 const EXPECT = 'Expect';
48 const EXPIRES = 'Expires';
49 const FROM = 'From';
50 const HOST = 'Host';
51 const IF_MATCH = 'If-Match';
52 const IF_MODIFIED_SINCE = 'If-Modified-Since';
53 const IF_NONE_MATCH = 'If-None-Match';
54 const IF_RANGE = 'If-Range';
55 const IF_UNMODIFIED_SINCE = 'If-Unmodified-Since';
56 const LAST_MODIFIED = 'Last-Modified';
57 const LOCATION = 'Location';
58 const MAX_FORWARDS = 'Max-Forwards';
59 const PRAGMA = 'Pragma';
60 const PROXY_AUTHENTICATION = 'Proxy-Authenticate';
61 const PROXY_AUTHORIZATION = 'Proxy-Authorization';
62 const RANGE = 'Range';
63 const REFERER = 'Referer';
64 const RETRY_AFTER = 'Retry-After';
65 const SERVER = 'Server';
66 const TE = 'TE';
67 const TRAILER = 'Trailer';
68 const TRANSFER_ENCODING = 'Transfer-Encoding';
69 const UPGRADE = 'Upgrade';
70 const USER_AGENT = 'User-Agent';
71 const VARY = 'Vary';
72 const VIA = 'Via';
73 }
74