sttp.model.HeaderNames.scala Maven / Gradle / Ivy
package sttp.model
// https://www.iana.org/assignments/message-headers/message-headers.xml#perm-headers
trait HeaderNames {
val Accept = "Accept"
val AcceptCharset = "Accept-Charset"
val AcceptEncoding = "Accept-Encoding"
val AcceptLanguage = "Accept-Language"
val AcceptRanges = "Accept-Ranges"
val AccessControlAllowCredentials = "Access-Control-Allow-Credentials"
val AccessControlAllowHeaders = "Access-Control-Allow-Headers"
val AccessControlAllowMethods = "Access-Control-Allow-Methods"
val AccessControlAllowOrigin = "Access-Control-Allow-Origin"
val AccessControlExposeHeaders = "Access-Control-Expose-Headers"
val AccessControlMaxAge = "Access-Control-Max-Age"
val AccessControlRequestHeaders = "Access-Control-Request-Headers"
val AccessControlRequestMethod = "Access-Control-Request-Method"
val Age = "Age"
val Allow = "Allow"
val Authorization = "Authorization"
val CacheControl = "Cache-Control"
val Connection = "Connection"
val ContentDisposition = "Content-Disposition"
val ContentEncoding = "Content-Encoding"
val ContentLanguage = "Content-Language"
val ContentLength = "Content-Length"
val ContentLocation = "Content-Location"
val ContentMd5 = "Content-MD5"
val ContentRange = "Content-Range"
val ContentTransferEncoding = "Content-Transfer-Encoding"
val ContentType = "Content-Type"
val Cookie = "Cookie"
val Date = "Date"
val Etag = "ETag"
val Expect = "Expect"
val Expires = "Expires"
val Forwarded = "Forwarded"
val From = "From"
val Host = "Host"
val IfMatch = "If-Match"
val IfModifiedSince = "If-Modified-Since"
val IfNoneMatch = "If-None-Match"
val IfRange = "If-Range"
val IfUnmodifiedSince = "If-Unmodified-Since"
val LastModified = "Last-Modified"
val Link = "Link"
val Location = "Location"
val MaxForwards = "Max-Forwards"
val Origin = "Origin"
val Pragma = "Pragma"
val ProxyAuthenticate = "Proxy-Authenticate"
val ProxyAuthorization = "Proxy-Authorization"
val Range = "Range"
val Referer = "Referer"
val RetryAfter = "Retry-After"
val Server = "Server"
val SetCookie = "Set-Cookie"
val StrictTransportSecurity = "Strict-Transport-Security"
val Te = "Te"
val Trailer = "Trailer"
val TransferEncoding = "Transfer-Encoding"
val Upgrade = "Upgrade"
val UserAgent = "User-Agent"
val Vary = "Vary"
val Via = "Via"
val Warning = "Warning"
val WwwAuthenticate = "WWW-Authenticate"
val XForwardedFor = "X-Forwarded-For"
val XForwardedHost = "X-Forwarded-Host"
val XForwardedPort = "X-Forwarded-Port"
val XForwardedProto = "X-Forwarded-Proto"
val XRequestedWidth = "X-Requested-Width"
}
object HeaderNames extends HeaderNames
© 2015 - 2024 Weber Informatics LLC | Privacy Policy