play.api.mvc

RequestHeader

trait RequestHeader extends AnyRef

The HTTP request header. Note that it doesn’t contain the request body yet.

Annotations
@implicitNotFound( ... )
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. RequestHeader
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. def headers : Headers

    The HTTP headers.

    The HTTP headers.

    Attributes
    abstract
  2. def method : String

    The HTTP method.

    The HTTP method.

    Attributes
    abstract
  3. def path : String

    The URI path.

    The URI path.

    Attributes
    abstract
  4. def queryString : Map[String, Seq[String]]

    The parsed query string.

    The parsed query string.

    Attributes
    abstract
  5. def uri : String

    The complete request URI, containing both path and query string.

    The complete request URI, containing both path and query string.

    Attributes
    abstract

Concrete Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. lazy val acceptLanguages : Seq[Lang]

    The Request Langs, extracted from the Accept-Language header.

  7. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  8. lazy val charset : Option[String]

    Returns the charset of the request for text-based body

  9. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. lazy val contentType : Option[String]

    Returns the value of the Content-Type header (without the ;charset= part if exists)

  11. lazy val cookies : Cookies

    The HTTP cookies.

  12. lazy val domain : String

    The HTTP domain

  13. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  14. def equals (arg0: Any): Boolean

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. lazy val flash : Flash

    Parses the Flash cookie and returns the Flash data.

  17. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  18. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  19. lazy val host : String

    The HTTP host (domain, optionally port)

  20. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  21. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  22. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  23. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  24. lazy val rawQueryString : String

    Returns the raw query string.

  25. lazy val session : Session

    Parses the Session cookie and returns the Session data.

  26. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  27. def toString (): String

    Definition Classes
    RequestHeader → AnyRef → Any
  28. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any