ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
ResponseHeader.php
Go to the documentation of this file.
1 <?php
2 
3 namespace ILIAS\HTTP\Response;
4 
12 interface ResponseHeader
13 {
14 
20  const ACCESS_CONTROL_ALLOW_ORIGIN = 'Access-Control-Allow-Origin';
26  const ACCEPT_PATCH = 'Accept-Patch';
32  const ACCEPT_RANGES = 'Accept-Ranges';
38  const ALLOW = 'Allow';
45  const CACHE_CONTROL = 'Cache-Control';
51  const CONNECTION = 'Connection';
59  const CONTENT_DISPOSITION = 'Content-Disposition';
65  const CONTENT_ENCODING = 'Content-Encoding';
71  const CONTENT_LANGUAGE = 'Content-Language';
77  const CONTENT_LENGTH = 'Content-Length';
83  const CONTENT_LOCATION = 'Content-Location';
89  const CONTENT_RANGE = 'Content-Range';
95  const CONTENT_TYPE = 'Content-Type';
101  const DATE = 'Date';
107  const ETAG = 'ETag';
114  const EXPIRES = 'Expires';
121  const LAST_MODIFIED = 'Last-Modified';
128  const LINK = 'Link';
134  const LOCATION = 'Location';
142  const P3P = 'P3P';
149  const PRAGMA = 'Pragma';
156  const PUBLIC_KEY_PINS = 'Public-Key-Pins';
164  const RETRY_AFTER = 'Retry-After';
170  const SERVER = 'Server';
177  const STRICT_TRANSPORT_SECURITY = 'Strict-Transport-Security';
184  const TRAILER = 'Trailer';
191  const TRANSFER_ENCODING = 'Transfer-Encoding';
207  const TSV = 'TSV';
215  const VARY = 'Vary';
221  const WARNING = 'Warning';
227  const WWW_AUTHENTICATE = 'WWW-Authenticate';
233  const X_XSS_PROTECTION = 'X-XSS-Protection';
241  const X_CONTENT_TYPE_OPTIONS = 'X-Content-Type-Options';
247  const UPGRADE_INSECURE_REQUESTS = 'Upgrade-Insecure-Requests';
248 }
Interface ResponseHeader.