play.api.mvc

WrappedRequest

class WrappedRequest[A] extends Request[A]

Wrap an existing request. Useful to extend a request.

Source
Http.scala
Linear Supertypes
Request[A], RequestHeader, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. WrappedRequest
  2. Request
  3. RequestHeader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WrappedRequest(request: Request[A])

Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. lazy val accept: Seq[String]

    returns

    The media types list of the request’s Accept header, not sorted in any particular order.

    Definition Classes
    RequestHeader
  7. lazy val acceptLanguages: Seq[Lang]

    The Request Langs extracted from the Accept-Language header and sorted by preference (preferred first).

    The Request Langs extracted from the Accept-Language header and sorted by preference (preferred first).

    Definition Classes
    RequestHeader
  8. lazy val acceptedTypes: Seq[MediaRange]

    returns

    The media types list of the request’s Accept header, sorted by preference (preferred first).

    Definition Classes
    RequestHeader
  9. def accepts(mimeType: String): Boolean

    Check if this request accepts a given media type.

    Check if this request accepts a given media type.

    returns

    true if mimeType matches the Accept header, otherwise false

    Definition Classes
    RequestHeader
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def body: A

    The body content.

    The body content.

    Definition Classes
    WrappedRequestRequest
  12. lazy val charset: Option[String]

    Returns the charset of the request for text-based body

    Returns the charset of the request for text-based body

    Definition Classes
    RequestHeader
  13. def clone(): AnyRef

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

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

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

    Definition Classes
    RequestHeader
  15. lazy val cookies: Cookies

    The HTTP cookies.

    The HTTP cookies.

    Definition Classes
    RequestHeader
  16. def copy(id: Long = this.id, tags: Map[String, String] = this.tags, uri: String = this.uri, path: String = this.path, method: String = this.method, version: String = this.version, queryString: Map[String, Seq[String]] = this.queryString, headers: Headers = this.headers, remoteAddress: String = this.remoteAddress): RequestHeader

    Copy the request.

    Copy the request.

    Definition Classes
    RequestHeader
  17. lazy val domain: String

    The HTTP domain

    The HTTP domain

    Definition Classes
    RequestHeader
  18. final def eq(arg0: AnyRef): Boolean

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

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

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

    Parses the Flash cookie and returns the Flash data.

    Parses the Flash cookie and returns the Flash data.

    Definition Classes
    RequestHeader
  22. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  23. def getQueryString(key: String): Option[String]

    Helper method to access a queryString parameter.

    Helper method to access a queryString parameter.

    Definition Classes
    RequestHeader
  24. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  25. def headers: Headers

    The HTTP headers.

    The HTTP headers.

    Definition Classes
    WrappedRequestRequestHeader
  26. lazy val host: String

    The HTTP host (domain, optionally port)

    The HTTP host (domain, optionally port)

    Definition Classes
    RequestHeader
  27. def id: Long

    The request ID.

    The request ID.

    Definition Classes
    WrappedRequestRequestHeader
  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. def map[B](f: (A) ⇒ B): Request[B]

    Transform the request body.

    Transform the request body.

    Definition Classes
    Request
  30. def method: String

    The HTTP method.

    The HTTP method.

    Definition Classes
    WrappedRequestRequestHeader
  31. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  32. final def notify(): Unit

    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  34. def path: String

    The URI path.

    The URI path.

    Definition Classes
    WrappedRequestRequestHeader
  35. def queryString: Map[String, Seq[String]]

    The parsed query string.

    The parsed query string.

    Definition Classes
    WrappedRequestRequestHeader
  36. lazy val rawQueryString: String

    Returns the raw query string.

    Returns the raw query string.

    Definition Classes
    RequestHeader
  37. def remoteAddress: String

    The client IP address.

    The client IP address.

    If the X-Forwarded-For header is present, then this method will return the value in that header if either the local address is 127.0.0.1, or if trustxforwarded is configured to be true in the application configuration file.

    Definition Classes
    WrappedRequestRequestHeader
  38. lazy val session: Session

    Parses the Session cookie and returns the Session data.

    Parses the Session cookie and returns the Session data.

    Definition Classes
    RequestHeader
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  40. def tags: Map[String, String]

    The request Tags.

    The request Tags.

    Definition Classes
    WrappedRequestRequestHeader
  41. def toString(): String

    Definition Classes
    RequestHeader → AnyRef → Any
  42. def uri: String

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

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

    Definition Classes
    WrappedRequestRequestHeader
  43. def version: String

    The HTTP version.

    The HTTP version.

    Definition Classes
    WrappedRequestRequestHeader
  44. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Request[A]

Inherited from RequestHeader

Inherited from AnyRef

Inherited from Any

Ungrouped