unfiltered.request

HttpRequest

class HttpRequest [+T] extends AnyRef

Attributes
abstract
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. HttpRequest
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HttpRequest (underlying: T)

Abstract Value Members

  1. def headers (name: String): Iterator[String]

    Iterator of request headers

    Iterator of request headers

    Attributes
    abstract
  2. def inputStream : InputStream

    read-once access to request body input stream

    read-once access to request body input stream

    Attributes
    abstract
  3. def isSecure : Boolean

    true if the request is using tls, false otherwise

    true if the request is using tls, false otherwise

    Attributes
    abstract
  4. def method : String

    HTTP verb in all caps

    HTTP verb in all caps

    Attributes
    abstract
  5. def parameterNames : Iterator[String]

    GET and POST parameter names

    GET and POST parameter names

    Attributes
    abstract
  6. def parameterValues (param: String): Seq[String]

    Sequence of values associated with a parameter.

    Sequence of values associated with a parameter. Nil if none

    Attributes
    abstract
  7. def protocol : String

    The HTTP protocol version

    The HTTP protocol version

    Attributes
    abstract
  8. def reader : Reader

    buffered reader for request body's input stream

    buffered reader for request body's input stream

    Attributes
    abstract
  9. def remoteAddr : String

    address associated with the source of the request

    address associated with the source of the request

    Attributes
    abstract
  10. def uri : String

    full HTTP request uri including raw query string http://tools.

    full HTTP request uri including raw query string http://tools.ietf.org/html/rfc2616#section-5.1.2

    Attributes
    abstract
  11. def cookies : Seq[Cookie]

    parsed cookie string cookies

    parsed cookie string cookies

    Attributes
    abstract
    Annotations
    @deprecated
    Deprecated

    use the unfiltered.request.Cookies request extractor instead

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. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def eq (arg0: AnyRef): Boolean

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

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def getClass (): java.lang.Class[_]

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

    Definition Classes
    AnyRef → Any
  13. def isInstanceOf [T0] : Boolean

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
  17. def synchronized [T0] (arg0: ⇒ T0): T0

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

    Definition Classes
    AnyRef → Any
  19. val underlying : T

  20. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any