All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.resteasy.util.HttpHeaderNames Maven / Gradle / Ivy

There is a newer version: 4.0.0.Beta5
Show newest version
package org.jboss.resteasy.util;

/**
 * A list of Http Header names.
 *
 * @author Ryan J. McDonough
 *         Feb 25, 2007
 */
public interface HttpHeaderNames
{
   String ACCEPT = "Accept";
   String ACCEPT_CHARSET = "Accept-Charset";
   String ACCEPT_ENCODING = "Accept-Encoding";
   String ACCEPT_LANGUAGE = "Accept-Language";
   String ACCEPT_RANGES = "Accept-Ranges";
   String ACCEPT_PATCH = "Accept-Patch";
   String AGE = "Age";
   String ALLOW = "Allow";
   String AUTHORIZATION = "Authorization";
   String CACHE_CONTROL = "Cache-Control";
   String CONNECTION = "Connection";
   String CONTENT_ENCODING = "Content-Encoding";
   String CONTENT_LANGUAGE = "Content-Language";
   String CONTENT_LENGTH = "Content-Length";
   String CONTENT_LOCATION = "Content-Location";
   String CONTENT_MD5 = "Content-MD5";
   String CONTENT_RANGE = "Content-Range";
   String CONTENT_TYPE = "Content-Type";
   String SET_COOKIE = "Set-Cookie";
   String DATE = "Date";
   String ETAG = "ETag";
   String EXPECT = "Expect";
   String EXPIRES = "Expires";
   String FROM = "From";
   String HOST = "Host";
   String IF_MATCH = "If-Match";
   String IF_MODIFIED_SINCE = "If-Modified-Since";
   String IF_NONE_MATCH = "If-None-Match";
   String IF_RANGE = "If-Range";
   String IF_UNMODIFIED_SINCE = "If-Unmodified-Since";
   String LAST_MODIFIED = "Last-Modified";
   String LOCATION = "Location";
   String PRAGMA = "Pragma";
   String PROXY_AUTHENTICATE = "Proxy-Authenticate";
   String RANGE = "Range";
   String REFERER = "Referer";
   String RETRY_AFTER = "Retry-After";
   String SERVER = "Server";
   String TE = "TE";
   String TRAILER = "Trailer";
   String TRANSFER_ENCODING = "Transfer-Encoding";
   String UPGRADE = "Upgrade";
   String USER_AGENT = "User-Agent";
   String VARY = "Vary";
   String VIA = "Via";
   String WARNING = "Warning";
   String WWW_AUTHENTICATE = "WWW-Authenticate";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy