Object

spray.http

HttpHeaders

Related Doc: package http

Permalink

object HttpHeaders

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HttpHeaders
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Accept(mediaRanges: Seq[MediaRange]) extends ModeledHeader with Product with Serializable

    Permalink
  2. case class Accept-Charset(charsetRanges: Seq[HttpCharsetRange]) extends ModeledHeader with Product with Serializable

    Permalink
  3. case class Accept-Encoding(encodings: Seq[HttpEncodingRange]) extends ModeledHeader with Product with Serializable

    Permalink
  4. case class Accept-Language(languages: Seq[LanguageRange]) extends ModeledHeader with Product with Serializable

    Permalink
  5. case class Accept-Ranges(acceptRanges: Seq[RangeUnit]) extends ModeledHeader with Product with Serializable

    Permalink
  6. case class Access-Control-Allow-Credentials(allow: Boolean) extends ModeledHeader with Product with Serializable

    Permalink
  7. case class Access-Control-Allow-Headers(headers: Seq[String]) extends ModeledHeader with Product with Serializable

    Permalink
  8. case class Access-Control-Allow-Methods(methods: Seq[HttpMethod]) extends ModeledHeader with Product with Serializable

    Permalink
  9. case class Access-Control-Allow-Origin(allowedOrigins: AllowedOrigins) extends ModeledHeader with Product with Serializable

    Permalink
  10. case class Access-Control-Expose-Headers(headers: Seq[String]) extends ModeledHeader with Product with Serializable

    Permalink
  11. case class Access-Control-Max-Age(deltaSeconds: Long) extends ModeledHeader with Product with Serializable

    Permalink
  12. case class Access-Control-Request-Headers(headers: Seq[String]) extends ModeledHeader with Product with Serializable

    Permalink
  13. case class Access-Control-Request-Method(method: HttpMethod) extends ModeledHeader with Product with Serializable

    Permalink
  14. case class Allow(methods: HttpMethod*) extends ModeledHeader with Product with Serializable

    Permalink
  15. case class Authorization(credentials: HttpCredentials) extends ModeledHeader with Product with Serializable

    Permalink
  16. case class Cache-Control(directives: Seq[CacheDirective]) extends ModeledHeader with Product with Serializable

    Permalink
  17. case class Connection(tokens: Seq[String]) extends ModeledHeader with Product with Serializable

    Permalink
  18. case class Content-Disposition(dispositionType: String, parameters: Map[String, String] = Map.empty) extends ModeledHeader with Product with Serializable

    Permalink
  19. case class Content-Encoding(encoding: HttpEncoding) extends ModeledHeader with Product with Serializable

    Permalink
  20. case class Content-Length(length: Long)(implicit ev: Enabled) extends ModeledHeader with Product with Serializable

    Permalink
  21. case class Content-Range(rangeUnit: RangeUnit, contentRange: ContentRange) extends ModeledHeader with Product with Serializable

    Permalink
  22. case class Content-Type(contentType: ContentType)(implicit ev: Enabled) extends ModeledHeader with Product with Serializable

    Permalink
  23. case class Cookie(cookies: Seq[HttpCookie]) extends ModeledHeader with Product with Serializable

    Permalink
  24. case class Date(date: DateTime)(implicit ev: Enabled) extends ModeledHeader with Product with Serializable

    Permalink
  25. case class ETag(etag: EntityTag) extends ModeledHeader with Product with Serializable

    Permalink
  26. case class Expect(expectations: Seq[String]) extends ModeledHeader with Product with Serializable

    Permalink
  27. case class Host(host: String, port: Int = 0) extends ModeledHeader with Product with Serializable

    Permalink
  28. case class If-Match(m: EntityTagRange) extends ModeledHeader with Product with Serializable

    Permalink
  29. case class If-Modified-Since(date: DateTime) extends ModeledHeader with Product with Serializable

    Permalink
  30. case class If-None-Match(m: EntityTagRange) extends ModeledHeader with Product with Serializable

    Permalink
  31. case class If-Range(entityTagOrDateTime: Either[EntityTag, DateTime]) extends ModeledHeader with Product with Serializable

    Permalink
  32. case class If-Unmodified-Since(date: DateTime) extends ModeledHeader with Product with Serializable

    Permalink
  33. case class Last-Modified(date: DateTime) extends ModeledHeader with Product with Serializable

    Permalink
  34. case class Link(values: Seq[Link.Value]) extends ModeledHeader with Product with Serializable

    Permalink
  35. case class Location(uri: Uri) extends ModeledHeader with Product with Serializable

    Permalink
  36. sealed abstract class ModeledCompanion extends Renderable

    Permalink
  37. sealed abstract class ModeledHeader extends HttpHeader with Serializable

    Permalink
  38. case class Origin(originList: Seq[HttpOrigin]) extends ModeledHeader with Product with Serializable

    Permalink
  39. case class Proxy-Authenticate(challenges: Seq[HttpChallenge]) extends ModeledHeader with Product with Serializable

    Permalink
  40. case class Proxy-Authorization(credentials: HttpCredentials) extends ModeledHeader with Product with Serializable

    Permalink
  41. case class Range(rangeUnit: RangeUnit, ranges: Seq[ByteRange]) extends ModeledHeader with Product with Serializable

    Permalink
  42. case class Raw-Request-URI(uri: String) extends ModeledHeader with Product with Serializable

    Permalink
  43. case class RawHeader(name: String, value: String) extends HttpHeader with Product with Serializable

    Permalink
  44. case class Remote-Address(address: RemoteAddress) extends ModeledHeader with Product with Serializable

    Permalink
  45. case class SSL-Session-Info(info: SSLSessionInfo) extends ModeledHeader with Product with Serializable

    Permalink
  46. case class Server(products: Seq[ProductVersion])(implicit ev: Enabled) extends ModeledHeader with Product with Serializable

    Permalink
  47. case class Set-Cookie(cookie: HttpCookie) extends ModeledHeader with Product with Serializable

    Permalink
  48. case class Transfer-Encoding(encodings: Seq[String])(implicit ev: Enabled) extends ModeledHeader with Product with Serializable

    Permalink
  49. case class User-Agent(products: Seq[ProductVersion])(implicit ev: Enabled) extends ModeledHeader with Product with Serializable

    Permalink
  50. case class WWW-Authenticate(challenges: Seq[HttpChallenge]) extends ModeledHeader with Product with Serializable

    Permalink
  51. case class X-Forwarded-For(addresses: Seq[RemoteAddress]) extends ModeledHeader with Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Accept extends ModeledCompanion with Serializable

    Permalink
  5. object Accept-Charset extends ModeledCompanion with Serializable

    Permalink
  6. object Accept-Encoding extends ModeledCompanion with Serializable

    Permalink
  7. object Accept-Language extends ModeledCompanion with Serializable

    Permalink
  8. object Accept-Ranges extends ModeledCompanion with Serializable

    Permalink
  9. object Access-Control-Allow-Credentials extends ModeledCompanion with Serializable

    Permalink
  10. object Access-Control-Allow-Headers extends ModeledCompanion with Serializable

    Permalink
  11. object Access-Control-Allow-Methods extends ModeledCompanion with Serializable

    Permalink
  12. object Access-Control-Allow-Origin extends ModeledCompanion with Serializable

    Permalink
  13. object Access-Control-Expose-Headers extends ModeledCompanion with Serializable

    Permalink
  14. object Access-Control-Max-Age extends ModeledCompanion with Serializable

    Permalink
  15. object Access-Control-Request-Headers extends ModeledCompanion with Serializable

    Permalink
  16. object Access-Control-Request-Method extends ModeledCompanion with Serializable

    Permalink
  17. object Allow extends ModeledCompanion with Serializable

    Permalink
  18. object Authorization extends ModeledCompanion with Serializable

    Permalink
  19. object Cache-Control extends ModeledCompanion with Serializable

    Permalink
  20. object Connection extends ModeledCompanion with Serializable

    Permalink
  21. object Content-Disposition extends ModeledCompanion with Serializable

    Permalink
  22. object Content-Encoding extends ModeledCompanion with Serializable

    Permalink
  23. object Content-Length extends ModeledCompanion with Serializable

    Permalink
  24. object Content-Range extends ModeledCompanion with Serializable

    Permalink
  25. object Content-Type extends ModeledCompanion with Serializable

    Permalink
  26. object Cookie extends ModeledCompanion with Serializable

    Permalink
  27. object Date extends ModeledCompanion with Serializable

    Permalink
  28. object ETag extends ModeledCompanion with Serializable

    Permalink
  29. object Expect extends ModeledCompanion with Serializable

    Permalink
  30. object Host extends ModeledCompanion with Serializable

    Permalink
  31. object If-Match extends ModeledCompanion with Serializable

    Permalink
  32. object If-Modified-Since extends ModeledCompanion with Serializable

    Permalink
  33. object If-None-Match extends ModeledCompanion with Serializable

    Permalink
  34. object If-Range extends ModeledCompanion with Serializable

    Permalink
  35. object If-Unmodified-Since extends ModeledCompanion with Serializable

    Permalink
  36. object Last-Modified extends ModeledCompanion with Serializable

    Permalink
  37. object Link extends ModeledCompanion with LinkHeaderCompanion with Serializable

    Permalink
  38. object Location extends ModeledCompanion with Serializable

    Permalink
  39. object Origin extends ModeledCompanion with Serializable

    Permalink
  40. object ProtectedHeaderCreation

    Permalink
  41. object Proxy-Authenticate extends ModeledCompanion with Serializable

    Permalink
  42. object Proxy-Authorization extends ModeledCompanion with Serializable

    Permalink
  43. object Range extends ModeledCompanion with Serializable

    Permalink
  44. object Raw-Request-URI extends ModeledCompanion with Serializable

    Permalink
  45. object Remote-Address extends ModeledCompanion with Serializable

    Permalink
  46. object SSL-Session-Info extends ModeledCompanion with Serializable

    Permalink

    Provides information about the SSL session the message was received over.

    Provides information about the SSL session the message was received over.

    For non-certificate based cipher suites (e.g., Kerberos), localCertificates and peerCertificates are both empty lists.

  47. object Server extends ModeledCompanion with Serializable

    Permalink
  48. object Set-Cookie extends ModeledCompanion with Serializable

    Permalink
  49. object Transfer-Encoding extends ModeledCompanion with Serializable

    Permalink
  50. object User-Agent extends ModeledCompanion with Serializable

    Permalink
  51. object WWW-Authenticate extends ModeledCompanion with Serializable

    Permalink
  52. object X-Forwarded-For extends ModeledCompanion with Serializable

    Permalink
  53. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  54. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  55. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  56. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  57. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  58. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  59. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  60. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  61. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  62. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  63. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  64. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  65. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  66. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  67. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  68. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped