case class RichRequest(r: HttpServletRequest) extends AttributesMap with Product with Serializable
- Alphabetic
- By Inheritance
- RichRequest
- Serializable
- Product
- Equals
- AttributesMap
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new RichRequest(r: HttpServletRequest)
Type Members
- type A = HttpServletRequest
- Attributes
- protected[this]
- Definition Classes
- RichRequest → AttributesMap
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- 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
- 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
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(key: String): Any
Returns the attribute associated with the key or throw an exception when nothing found
Returns the attribute associated with the key or throw an exception when nothing found
- key
The key to find
- returns
an value for the attributed associated with the key in the underlying servlet object, or throw an exception if the key doesn't exist
- Definition Classes
- AttributesMap
- def as[T](key: String)(implicit converter: TypeConverter[Any, T]): T
Returns the attribute associated with the key or throw an exception when nothing found
Returns the attribute associated with the key or throw an exception when nothing found
- T
The type of the value
- key
The key to find
- returns
an value for the attributed associated with the key in the underlying servlet object, or throw an exception if the key doesn't exist
- Definition Classes
- AttributesMap
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def attributes: HttpServletRequest
- Attributes
- protected[this]
- Definition Classes
- RichRequest → AttributesMap
- def attributesTypeClass: Attributes[A]
- Attributes
- protected[this]
- Definition Classes
- RichRequest → AttributesMap
- def body: String
Caches and returns the body of the request.
Caches and returns the body of the request. 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.
Also note that this method gets data from the input stream of the request, so it may be already consumed according to the servlet specification 3.1.1.
- returns
the message body as a string according to the request's encoding (defult ISO-8859-1).
- def characterEncoding: Option[String]
Returns the name of the character encoding of the body, or None if no character encoding is specified.
- def characterEncoding_=(encoding: Option[String]): Unit
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def contains(key: String): Boolean
Returns whether the specified key exists
Returns whether the specified key exists
- returns
whether the specified key exists
- Definition Classes
- AttributesMap
- def contentLength: Option[Long]
Returns the length, in bytes, of the body, or None if not known.
- def contentType: Option[String]
The content of the Content-Type header, or None if absent.
- def cookies: MultiMapHeadView[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.
- def dumpAll: String
dumps all keys and values
dumps all keys and values
- Definition Classes
- AttributesMap
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def foreach[U](f: ((String, Any)) => U): Unit
Appllies a function f to add attribute elements
Appllies a function f to add attribute elements
- Definition Classes
- AttributesMap
- def get(key: String): Option[Any]
Optionally returns the attribute associated with the key
Optionally returns the attribute associated with the key
- key
The key to find
- returns
an option value containing the attribute associated with the key in the underlying servlet object, or None if none exists.
- Definition Classes
- AttributesMap
- def getAs[T](key: String)(implicit converter: TypeConverter[Any, T]): Option[T]
Optionally returns and type cast the attribute associated with the key
Optionally returns and type cast the attribute associated with the key
- T
The type of the value
- key
The key to find
- returns
an option value containing the attributed associated with the key in the underlying servlet object, or None if none exists
- Definition Classes
- AttributesMap
- def getAsOrElse[T](key: String, default: => T)(implicit converter: TypeConverter[Any, T]): T
Returns the attribute associated with the key or default value
Returns the attribute associated with the key or default value
- T
The type of the value
- key
The key to find
- returns
an value for the attributed associated with the key in the underlying servlet object, or the default value if the key doesn't exist
- Definition Classes
- AttributesMap
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getOrElse(key: String, default: => Any): Any
Returns the attribute associated with the key or default value
Returns the attribute associated with the key or default value
- key
The key to find
- returns
an value for the attributed associated with the key in the underlying servlet object, or the default value if the key doesn't exist
- Definition Classes
- AttributesMap
- def getOrElseUpdate(key: String, value: => Any): Any
Returns the attribute associated with the key or update attributes with the specified value
Returns the attribute associated with the key or update attributes with the specified value
- key
The key to find
- value
The value that will be updated the attribute associated with the key when the key does not exist
- returns
an value for the attributed associated with the key in the underlying servlet object, or the updated value if the key doesn't exist
- Definition Classes
- AttributesMap
- def header(name: String): Option[String]
- 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.
- def isAjax: Boolean
Returns true if the request is an AJAX request
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isWrite: Boolean
Returns true if the request's method is not "safe" per RFC 2616.
- 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
- def keys: Iterator[String]
Returns an attributes keys
Returns an attributes keys
- Definition Classes
- AttributesMap
- def locale: Locale
- def locales: Seq[Locale]
- def multiCookies: MultiParams
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.
- 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.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- 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.
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- 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!
- val r: HttpServletRequest
- def referrer: Option[String]
Optionally returns the HTTP referrer.
Optionally returns the HTTP referrer.
- returns
the
Refererheader, or None if not set
- 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
- def requestMethod: HttpMethod
The HTTP request method, such as GET or POST
- 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.
- 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.
- 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.
- 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.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def update(key: String, value: Any): Unit
Updates the attribute associated with the key
- def uri: URI
- def urlScheme: Scheme
Http or Https, depending on the request URL.
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object headers
A map of headers.
A map of headers. Multiple header values are separated by a ',' character. The keys of this map are case-insensitive.
- object parameters extends MultiMapHeadView[String, String]