ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ResponseHeader.php
Go to the documentation of this file.
1 <?php
2 
3 namespace ILIAS\HTTP\Response;
4 
13 interface ResponseHeader
14 {
15 
21  const ACCESS_CONTROL_ALLOW_ORIGIN = 'Access-Control-Allow-Origin';
27  const ACCEPT_PATCH = 'Accept-Patch';
33  const ACCEPT_RANGES = 'Accept-Ranges';
39  const ALLOW = 'Allow';
46  const CACHE_CONTROL = 'Cache-Control';
52  const CONNECTION = 'Connection';
60  const CONTENT_DISPOSITION = 'Content-Disposition';
66  const CONTENT_ENCODING = 'Content-Encoding';
72  const CONTENT_LANGUAGE = 'Content-Language';
78  const CONTENT_LENGTH = 'Content-Length';
84  const CONTENT_LOCATION = 'Content-Location';
90  const CONTENT_RANGE = 'Content-Range';
96  const CONTENT_TYPE = 'Content-Type';
102  const DATE = 'Date';
108  const ETAG = 'ETag';
115  const EXPIRES = 'Expires';
122  const LAST_MODIFIED = 'Last-Modified';
129  const LINK = 'Link';
135  const LOCATION = 'Location';
143  const P3P = 'P3P';
150  const PRAGMA = 'Pragma';
157  const PUBLIC_KEY_PINS = 'Public-Key-Pins';
165  const RETRY_AFTER = 'Retry-After';
171  const SERVER = 'Server';
178  const STRICT_TRANSPORT_SECURITY = 'Strict-Transport-Security';
185  const TRAILER = 'Trailer';
192  const TRANSFER_ENCODING = 'Transfer-Encoding';
208  const TSV = 'TSV';
216  const VARY = 'Vary';
222  const WARNING = 'Warning';
228  const WWW_AUTHENTICATE = 'WWW-Authenticate';
234  const X_XSS_PROTECTION = 'X-XSS-Protection';
242  const X_CONTENT_TYPE_OPTIONS = 'X-Content-Type-Options';
248  const UPGRADE_INSECURE_REQUESTS = 'Upgrade-Insecure-Requests';
249 }
Interface ResponseHeader.