org.scalatra.servlet

RichRequest

case class RichRequest(r: HttpServletRequest) extends AttributesMap with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, AttributesMap, MutableMapWithIndifferentAccess[Any], MapWithIndifferentAccess[Any], Map[String, Any], MapLike[String, Any, Map[String, Any]], Cloneable[Map[String, Any]], Shrinkable[String], Builder[(String, Any), Map[String, Any]], Growable[(String, Any)], Map[String, Any], MapLike[String, Any, Map[String, Any]], Subtractable[String, Map[String, Any]], PartialFunction[String, Any], (String) ⇒ Any, GenMap[String, Any], GenMapLike[String, Any, Map[String, Any]], Iterable[(String, Any)], Iterable[(String, Any)], IterableLike[(String, Any), Map[String, Any]], Equals, GenIterable[(String, Any)], GenIterableLike[(String, Any), Map[String, Any]], Traversable[(String, Any)], Mutable, Traversable[(String, Any)], GenTraversable[(String, Any)], GenericTraversableTemplate[(String, Any), Iterable], TraversableLike[(String, Any), Map[String, Any]], GenTraversableLike[(String, Any), Map[String, Any]], Parallelizable[(String, Any), ParMap[String, Any]], TraversableOnce[(String, Any)], GenTraversableOnce[(String, Any)], FilterMonadic[(String, Any), Map[String, Any]], HasNewBuilder[(String, Any), Map[String, Any]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. RichRequest
  2. Serializable
  3. Serializable
  4. Product
  5. AttributesMap
  6. MutableMapWithIndifferentAccess
  7. MapWithIndifferentAccess
  8. Map
  9. MapLike
  10. Cloneable
  11. Shrinkable
  12. Builder
  13. Growable
  14. Map
  15. MapLike
  16. Subtractable
  17. PartialFunction
  18. Function1
  19. GenMap
  20. GenMapLike
  21. Iterable
  22. Iterable
  23. IterableLike
  24. Equals
  25. GenIterable
  26. GenIterableLike
  27. Traversable
  28. Mutable
  29. Traversable
  30. GenTraversable
  31. GenericTraversableTemplate
  32. TraversableLike
  33. GenTraversableLike
  34. Parallelizable
  35. TraversableOnce
  36. GenTraversableOnce
  37. FilterMonadic
  38. HasNewBuilder
  39. AnyRef
  40. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RichRequest(r: HttpServletRequest)

Type Members

  1. type Self = Map[String, Any]

    Attributes
    protected
    Definition Classes
    TraversableLike

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. def +[B1 >: Any](elem1: (String, B1), elem2: (String, B1), elems: (String, B1)*): Map[String, B1]

    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.

  5. def +[B1 >: Any](kv: (String, B1)): Map[String, B1]

    Definition Classes
    MapLike → MapLike → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.

  6. def ++[B1 >: Any](xs: GenTraversableOnce[(String, B1)]): Map[String, B1]

    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) ++ creates a new map. Use ++= to add an element to this map and return that map itself.

  7. def ++[B >: (String, Any), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  8. def ++:[B >: (String, Any), That](that: Traversable[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That

    Definition Classes
    TraversableLike
  9. def ++:[B >: (String, Any), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That

    Definition Classes
    TraversableLike
  10. def ++=(xs: TraversableOnce[(String, Any)]): RichRequest.this.type

    Definition Classes
    Growable
  11. def +=(kv: (String, Any)): RichRequest.this.type

    Sets an attribute on the underlying servlet object.

    Sets an attribute on the underlying servlet object.

    kv

    the key/value pair. If the value is null, has the same effect as calling -=(kv._1).

    returns

    the map itself

    Definition Classes
    AttributesMap → MapLike → Builder → Growable
  12. def +=(elem1: (String, Any), elem2: (String, Any), elems: (String, Any)*): RichRequest.this.type

    Definition Classes
    Growable
  13. def -(elem1: String, elem2: String, elems: String*): Map[String, Any]

    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.

  14. def -(key: String): Map[String, Any]

    Definition Classes
    MapLike → MapLike → Subtractable → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.

  15. def --(xs: GenTraversableOnce[String]): Map[String, Any]

    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) -- creates a new map. Use --= to remove an element from this map and return that map itself.

  16. def --=(xs: TraversableOnce[String]): RichRequest.this.type

    Definition Classes
    Shrinkable
  17. def -=(key: String): RichRequest.this.type

    Removes an attribute from the underlying servlet object.

    Removes an attribute from the underlying servlet object.

    key

    the key to remove

    returns

    the map itself

    Definition Classes
    AttributesMap → MapLike → Shrinkable
  18. def -=(elem1: String, elem2: String, elems: String*): RichRequest.this.type

    Definition Classes
    Shrinkable
  19. def /:[B](z: B)(op: (B, (String, Any)) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. def /:\[A1 >: (String, Any)](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
  21. def :\[B](z: B)(op: ((String, Any), B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  24. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    MapLike → TraversableOnce
  25. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  26. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  27. def aggregate[B](z: B)(seqop: (B, (String, Any)) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  28. def andThen[C](k: (Any) ⇒ C): PartialFunction[String, C]

    Definition Classes
    PartialFunction → Function1
  29. def apply(key: Symbol): Any

    Definition Classes
    MapWithIndifferentAccess
  30. def apply(key: String): Any

    Definition Classes
    MapLike → GenMapLike → Function1
  31. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  32. def attributes: HttpServletRequest

    Attributes
    protected[scalatra]
    Definition Classes
    RichRequestAttributesMap
  33. def body: String

    Caches and returns the body of the response.

    Caches and returns the body of the response. The method is idempotent for any given request. The result is cached in memory regardless of size, so be careful. Calling this method consumes the request's input stream.

    returns

    the message body as a string according to the request's encoding (defult ISO-8859-1).

  34. def canEqual(that: Any): Boolean

    Definition Classes
    IterableLike → Equals
  35. def characterEncoding: Option[String]

    Returns the name of the character encoding of the body, or None if no character encoding is specified.

  36. def characterEncoding_=(encoding: Option[String]): Unit

  37. def clear(): Unit

    Definition Classes
    MapLike → Builder → Growable
  38. def clone(): Map[String, Any]

    Definition Classes
    MapLike → Cloneable → AnyRef
  39. def collect[B, That](pf: PartialFunction[(String, Any), B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  40. def collectFirst[B](pf: PartialFunction[(String, Any), B]): Option[B]

    Definition Classes
    TraversableOnce
  41. def companion: GenericCompanion[Iterable]

    Definition Classes
    Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  42. def compose[A](g: (A) ⇒ String): (A) ⇒ Any

    Definition Classes
    Function1
  43. def contains(key: String): Boolean

    Definition Classes
    MapLike
  44. def contentLength: Option[Long]

    Returns the length, in bytes, of the body, or None if not known.

  45. def contentType: Option[String]

    The content of the Content-Type header, or None if absent.

  46. def cookies: Map[String, String]

    Returns a map of cookie names to values.

    Returns a map of cookie names to values. If multiple values are present for a given cookie, the value is the first cookie of that name.

  47. def copyToArray[B >: (String, Any)](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def copyToArray[B >: (String, Any)](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  49. def copyToArray[B >: (String, Any)](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def copyToBuffer[B >: (String, Any)](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  51. def count(p: ((String, Any)) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def default(key: String): Any

    Definition Classes
    MapLike → GenMapLike
  53. def drop(n: Int): Map[String, Any]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  54. def dropRight(n: Int): Map[String, Any]

    Definition Classes
    IterableLike
  55. def dropWhile(p: ((String, Any)) ⇒ Boolean): Map[String, Any]

    Definition Classes
    TraversableLike → GenTraversableLike
  56. def empty: Map[String, Any]

    Definition Classes
    Map → Map → MapLike
  57. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  58. def equals(that: Any): Boolean

    Definition Classes
    GenMapLike → Equals → AnyRef → Any
  59. def exists(p: ((String, Any)) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  60. def filter(p: ((String, Any)) ⇒ Boolean): Map[String, Any]

    Definition Classes
    TraversableLike → GenTraversableLike
  61. def filterKeys(p: (String) ⇒ Boolean): Map[String, Any]

    Definition Classes
    MapLike
  62. def filterNot(p: ((String, Any)) ⇒ Boolean): Map[String, Any]

    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  63. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  64. def find(p: ((String, Any)) ⇒ Boolean): Option[(String, Any)]

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  65. def flatMap[B, That](f: ((String, Any)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  66. def fold[A1 >: (String, Any)](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def foldLeft[B](z: B)(op: (B, (String, Any)) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  68. def foldRight[B](z: B)(op: ((String, Any), B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  69. def forall(p: ((String, Any)) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  70. def foreach[U](f: ((String, Any)) ⇒ U): Unit

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  71. def genericBuilder[B]: Builder[B, Iterable[B]]

    Definition Classes
    GenericTraversableTemplate
  72. def get(key: String): Option[Any]

    Optionally returns the attribute associated with the key

    Optionally returns the attribute associated with the key

    returns

    an option value containing the attribute associated with the key in the underlying servlet object, or None if none exists.

    Definition Classes
    AttributesMap → MapLike → GenMapLike
  73. def get(key: Symbol): Option[Any]

    Definition Classes
    MapWithIndifferentAccess
  74. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  75. def getOrElse[B1 >: Any](key: Symbol, default: ⇒ B1): B1

    Definition Classes
    MapWithIndifferentAccess
  76. def getOrElse[B1 >: Any](key: String, default: ⇒ B1): B1

    Definition Classes
    MapLike
  77. def getOrElseUpdate(key: String, op: ⇒ Any): Any

    Definition Classes
    MapLike
  78. def groupBy[K](f: ((String, Any)) ⇒ K): Map[K, Map[String, Any]]

    Definition Classes
    TraversableLike → GenTraversableLike
  79. def grouped(size: Int): Iterator[Map[String, Any]]

    Definition Classes
    IterableLike
  80. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  81. def hashCode(): Int

    Definition Classes
    GenMapLike → AnyRef → Any
  82. def head: (String, Any)

    Definition Classes
    IterableLike → GenIterableLike → TraversableLike → GenTraversableLike
  83. def headOption: Option[(String, Any)]

    Definition Classes
    TraversableLike
  84. def header(name: String): Option[String]

  85. object headers extends DefaultMap[String, String]

    A map of headers.

  86. def init: Map[String, Any]

    Definition Classes
    TraversableLike
  87. def inits: Iterator[Map[String, Any]]

    Definition Classes
    TraversableLike
  88. def inputStream: InputStream

    The input stream is an InputStream which contains the raw HTTP POST data.

    The input stream is an InputStream which contains the raw HTTP POST data. The caller should not close this stream.

    In contrast to Rack, this stream is not rewindable.

  89. def isAjax: Boolean

    Returns true if the request is an AJAX request

  90. def isDefinedAt(key: String): Boolean

    Definition Classes
    MapLike → PartialFunction
  91. def isEmpty: Boolean

    Definition Classes
    MapLike → IterableLike → GenIterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  92. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  93. final def isTraversableAgain: Boolean

    Definition Classes
    GenTraversableLike → GenTraversableOnce
  94. def isWrite: Boolean

    Returns true if the request's method is not "safe" per RFC 2616.

  95. def iterator: Iterator[(String, Any)]

    Creates a new iterator over all attributes in the underlying servlet object.

    Creates a new iterator over all attributes in the underlying servlet object.

    returns

    the new iterator

    Definition Classes
    AttributesMap → MapLike → IterableLike → GenIterableLike
  96. def keySet: Set[String]

    Definition Classes
    MapLike
  97. def keys: Iterable[String]

    Definition Classes
    MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) keys returns Iterable[A] rather than Iterator[A].

  98. def keysIterator: Iterator[String]

    Definition Classes
    MapLike
  99. def last: (String, Any)

    Definition Classes
    TraversableLike
  100. def lastOption: Option[(String, Any)]

    Definition Classes
    TraversableLike
  101. def lift: (String) ⇒ Option[Any]

    Definition Classes
    PartialFunction
  102. def locale: Locale

  103. def locales: Enumeration[Locale]

  104. def map[B, That](f: ((String, Any)) ⇒ B)(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  105. def mapResult[NewTo](f: (Map[String, Any]) ⇒ NewTo): Builder[(String, Any), NewTo]

    Definition Classes
    Builder
  106. def mapValues[C](f: (Any) ⇒ C): Map[String, C]

    Definition Classes
    MapLike
  107. def max[B >: (String, Any)](implicit cmp: Ordering[B]): (String, Any)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def maxBy[B](f: ((String, Any)) ⇒ B)(implicit cmp: Ordering[B]): (String, Any)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. def min[B >: (String, Any)](implicit cmp: Ordering[B]): (String, Any)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. def minBy[B](f: ((String, Any)) ⇒ B)(implicit cmp: Ordering[B]): (String, Any)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def multiCookies: MultiMap

    Returns a map of cookie names to lists of their values.

    Returns a map of cookie names to lists of their values. The default value of the map is the empty sequence.

  115. def multiParameters: MultiParams

    A Map of the parameters of this request.

    A Map of the parameters of this request. Parameters are contained in the query string or posted form data.

  116. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  117. def newBuilder: Builder[(String, Any), Map[String, Any]]

    Attributes
    protected[this]
    Definition Classes
    MapLike → MapLike → TraversableLike → HasNewBuilder
  118. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. final def notify(): Unit

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

    Definition Classes
    AnyRef
  121. def orElse[A1 <: String, B1 >: Any](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Definition Classes
    PartialFunction
  122. def par: ParMap[String, Any]

    Definition Classes
    Parallelizable
  123. def parCombiner: Combiner[(String, Any), ParMap[String, Any]]

    Attributes
    protected[this]
    Definition Classes
    MapLike → MapLike → TraversableLike → Parallelizable
  124. object parameters extends MultiMapHeadView[String, String]

  125. def partition(p: ((String, Any)) ⇒ Boolean): (Map[String, Any], Map[String, Any])

    Definition Classes
    TraversableLike → GenTraversableLike
  126. def pathInfo: String

    The remainder of the request URL's "path", designating the virtual "location" of the request's target within the application.

    The remainder of the request URL's "path", designating the virtual "location" of the request's target within the application. This may be an empty string, if the request URL targets the application root and does not have a trailing slash.

  127. def product[B >: (String, Any)](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def productArity: Int

    Definition Classes
    RichRequest → Product
  129. def productElement(arg0: Int): Any

    Definition Classes
    RichRequest → Product
  130. def productIterator: Iterator[Any]

    Definition Classes
    Product
  131. def productPrefix: String

    Definition Classes
    RichRequest → Product
  132. def put(key: String, value: Any): Option[Any]

    Definition Classes
    MapLike
  133. def queryString: String

    The portion of the request URL that follows the ?, if any.

    The portion of the request URL that follows the ?, if any. May be empty, but is always required!

  134. val r: HttpServletRequest

  135. def reduce[A1 >: (String, Any)](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def reduceLeft[B >: (String, Any)](op: (B, (String, Any)) ⇒ B): B

    Definition Classes
    TraversableOnce
  137. def reduceLeftOption[B >: (String, Any)](op: (B, (String, Any)) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def reduceOption[A1 >: (String, Any)](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  139. def reduceRight[B >: (String, Any)](op: ((String, Any), B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  140. def reduceRightOption[B >: (String, Any)](op: ((String, Any), B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  141. def referrer: Option[String]

    Optionally returns the HTTP referrer.

    Optionally returns the HTTP referrer.

    returns

    the Referer header, or None if not set

  142. def remoteAddress: String

    The remote address the client is connected from.

    The remote address the client is connected from. This takes the load balancing header X-Forwarded-For into account

    returns

    the client ip address

  143. def remove(key: String): Option[Any]

    Definition Classes
    MapLike
  144. def repr: Map[String, Any]

    Definition Classes
    TraversableLike → GenTraversableLike
  145. def requestMethod: HttpMethod

    The HTTP request method, such as GET or POST

  146. def result(): Map[String, Any]

    Definition Classes
    MapLike → Builder
  147. def retain(p: (String, Any) ⇒ Boolean): RichRequest.this.type

    Definition Classes
    MapLike
  148. def reversed: List[(String, Any)]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  149. def sameElements[B >: (String, Any)](that: GenIterable[B]): Boolean

    Definition Classes
    IterableLike → GenIterableLike
  150. def scan[B >: (String, Any), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Map[String, Any], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  151. def scanLeft[B, That](z: B)(op: (B, (String, Any)) ⇒ B)(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  152. def scanRight[B, That](z: B)(op: ((String, Any), B) ⇒ B)(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  153. def scriptName: String

    The initial portion of the request URL's "path" that corresponds to the application object, so that the application knows its virtual "location".

    The initial portion of the request URL's "path" that corresponds to the application object, so that the application knows its virtual "location". This may be an empty string, if the application corresponds to the "root" of the server.

  154. def seq: Map[String, Any]

    Definition Classes
    Map → Map → GenMap → GenMapLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  155. def serverName: String

    When combined with scriptName, pathInfo, and serverPort, can be used to complete the URL.

    When combined with scriptName, pathInfo, and serverPort, can be used to complete the URL. Note, however, that the "Host" header, if present, should be used in preference to serverName for reconstructing the request URL.

  156. def serverPort: Int

    When combined with scriptName, pathInfo, and serverName, can be used to complete the URL.

    When combined with scriptName, pathInfo, and serverName, can be used to complete the URL. See serverName for more details.

  157. def serverProtocol: HttpVersion

    The version of the protocol the client used to send the request.

    The version of the protocol the client used to send the request. Typically this will be something like "HTTP/1.0" or "HTTP/1.1" and may be used by the application to determine how to treat any HTTP request headers.

  158. def size: Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  159. def sizeHint(coll: scala.collection.TraversableLike[_, _], delta: Int): Unit

    Definition Classes
    Builder
  160. def sizeHint(size: Int): Unit

    Definition Classes
    Builder
  161. def sizeHintBounded(size: Int, boundingColl: scala.collection.TraversableLike[_, _]): Unit

    Definition Classes
    Builder
  162. def slice(from: Int, until: Int): Map[String, Any]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  163. def sliding[B >: (String, Any)](size: Int, step: Int): Iterator[Map[String, Any]]

    Definition Classes
    IterableLike
  164. def sliding[B >: (String, Any)](size: Int): Iterator[Map[String, Any]]

    Definition Classes
    IterableLike
  165. def span(p: ((String, Any)) ⇒ Boolean): (Map[String, Any], Map[String, Any])

    Definition Classes
    TraversableLike → GenTraversableLike
  166. def splitAt(n: Int): (Map[String, Any], Map[String, Any])

    Definition Classes
    TraversableLike → GenTraversableLike
  167. def stringPrefix: String

    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  168. def sum[B >: (String, Any)](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  169. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  170. def tail: Map[String, Any]

    Definition Classes
    TraversableLike → GenTraversableLike
  171. def tails: Iterator[Map[String, Any]]

    Definition Classes
    TraversableLike
  172. def take(n: Int): Map[String, Any]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  173. def takeRight(n: Int): Map[String, Any]

    Definition Classes
    IterableLike
  174. def takeWhile(p: ((String, Any)) ⇒ Boolean): Map[String, Any]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  175. def thisCollection: Iterable[(String, Any)]

    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  176. def toArray[B >: (String, Any)](implicit arg0: ClassManifest[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  177. def toBuffer[C >: (String, Any)]: Buffer[C]

    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  178. def toCollection(repr: Map[String, Any]): Iterable[(String, Any)]

    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  179. def toIndexedSeq[B >: (String, Any)]: IndexedSeq[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  180. def toIterable: Iterable[(String, Any)]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  181. def toIterator: Iterator[(String, Any)]

    Definition Classes
    TraversableLike → GenTraversableOnce
  182. def toList: List[(String, Any)]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  183. def toMap[T, U](implicit ev: <:<[(String, Any), (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  184. def toSeq: Seq[(String, Any)]

    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  185. def toSet[B >: (String, Any)]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  186. def toStream: Stream[(String, Any)]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  187. def toString(): String

    Definition Classes
    MapLike → TraversableLike → Function1 → AnyRef → Any
  188. def toTraversable: Traversable[(String, Any)]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  189. def transform(f: (String, Any) ⇒ Any): RichRequest.this.type

    Definition Classes
    MapLike
  190. def transpose[B](implicit asTraversable: ((String, Any)) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  191. def unzip[A1, A2](implicit asPair: ((String, Any)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Definition Classes
    GenericTraversableTemplate
  192. def unzip3[A1, A2, A3](implicit asTriple: ((String, Any)) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Definition Classes
    GenericTraversableTemplate
  193. def update(key: Symbol, value: Any): Unit

  194. def update(key: String, value: Any): Unit

    Definition Classes
    MapLike
  195. def updated[B1 >: Any](key: String, value: B1): Map[String, B1]

    Definition Classes
    MapLike → MapLike
  196. def uri: URI

  197. def urlScheme: Product with Serializable with Scheme

    Http or Https, depending on the request URL.

  198. def values: Iterable[Any]

    Definition Classes
    MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) values returns Iterable[B] rather than Iterator[B].

  199. def valuesIterator: Iterator[Any]

    Definition Classes
    MapLike
  200. def view(from: Int, until: Int): IterableView[(String, Any), Map[String, Any]]

    Definition Classes
    IterableLike → TraversableLike
  201. def view: IterableView[(String, Any), Map[String, Any]]

    Definition Classes
    IterableLike → TraversableLike
  202. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  205. def withDefault(d: (String) ⇒ Any): Map[String, Any]

    Definition Classes
    Map
  206. def withDefaultValue(d: Any): Map[String, Any]

    Definition Classes
    Map
  207. def withFilter(p: ((String, Any)) ⇒ Boolean): FilterMonadic[(String, Any), Map[String, Any]]

    Definition Classes
    TraversableLike → FilterMonadic
  208. def zip[A1 >: (String, Any), B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Map[String, Any], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  209. def zipAll[B, A1 >: (String, Any), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Map[String, Any], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  210. def zipWithIndex[A1 >: (String, Any), That](implicit bf: CanBuildFrom[Map[String, Any], (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike

Deprecated Value Members

  1. def elements: Iterator[(String, Any)]

    Definition Classes
    IterableLike
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use iterator' instead

  2. def first: (String, Any)

    Definition Classes
    IterableLike
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use head' instead

  3. def firstOption: Option[(String, Any)]

    Definition Classes
    IterableLike
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use headOption' instead

  4. def host: String

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) Use HttpServletRequest.serverName instead

  5. def mapElements[C](f: (Any) ⇒ C): Map[String, C]

    Definition Classes
    MapLike
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use mapValues' instead

  6. def method: HttpMethod

    Annotations
    @deprecated
    Deprecated

    (Since version 2.1.0) Use requestMethod

  7. def port: String

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) Use HttpServletRequest.serverPort instead

  8. def productElements: Iterator[Any]

    Definition Classes
    Product
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use productIterator instead

  9. def projection: IterableView[(String, Any), Map[String, Any]]

    Definition Classes
    IterableLike
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use view' instead

  10. def referer: Option[String]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) Use referrer

  11. def removeKey(key: String): Option[Any]

    Definition Classes
    MapLike
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) Use remove' instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from AttributesMap

Inherited from MutableMapWithIndifferentAccess[Any]

Inherited from MapWithIndifferentAccess[Any]

Inherited from Map[String, Any]

Inherited from MapLike[String, Any, Map[String, Any]]

Inherited from Cloneable[Map[String, Any]]

Inherited from Shrinkable[String]

Inherited from Builder[(String, Any), Map[String, Any]]

Inherited from Growable[(String, Any)]

Inherited from Map[String, Any]

Inherited from MapLike[String, Any, Map[String, Any]]

Inherited from Subtractable[String, Map[String, Any]]

Inherited from PartialFunction[String, Any]

Inherited from (String) ⇒ Any

Inherited from GenMap[String, Any]

Inherited from GenMapLike[String, Any, Map[String, Any]]

Inherited from Iterable[(String, Any)]

Inherited from Iterable[(String, Any)]

Inherited from IterableLike[(String, Any), Map[String, Any]]

Inherited from Equals

Inherited from GenIterable[(String, Any)]

Inherited from GenIterableLike[(String, Any), Map[String, Any]]

Inherited from Traversable[(String, Any)]

Inherited from Mutable

Inherited from Traversable[(String, Any)]

Inherited from GenTraversable[(String, Any)]

Inherited from GenericTraversableTemplate[(String, Any), Iterable]

Inherited from TraversableLike[(String, Any), Map[String, Any]]

Inherited from GenTraversableLike[(String, Any), Map[String, Any]]

Inherited from Parallelizable[(String, Any), ParMap[String, Any]]

Inherited from TraversableOnce[(String, Any)]

Inherited from GenTraversableOnce[(String, Any)]

Inherited from FilterMonadic[(String, Any), Map[String, Any]]

Inherited from HasNewBuilder[(String, Any), Map[String, Any]]

Inherited from AnyRef

Inherited from Any