Packages

trait Request[A] extends AnyRef

An HTTP request.

Has an instance of InvariantFunctor.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Request
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type EntityData
  2. abstract type HeadersData
  3. abstract type UrlData

Abstract Value Members

  1. abstract def aggregateAndValidate(urlData: UrlData, headersData: HeadersData, entityData: EntityData): Validated[A]
  2. abstract def entity: RequestEntity[EntityData]

    The entity of this request

  3. abstract def headers: RequestHeaders[HeadersData]

    The headers component of this request

  4. abstract def matchRequest(requestHeader: RequestHeader): Option[RequestEntity[A]]

    Returns a RequestEntity[A] (that is, a way to decode the entity of the incoming request) if the incoming request matches the method and URL of this request description.

  5. abstract def method: EndpointsWithCustomErrors.Method

    The method of this request

  6. abstract def url: EndpointsWithCustomErrors.Url[UrlData]

    The URL component of this request

  7. abstract def urlData(a: A): UrlData

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def encode(a: A): Call

    Reverse routing.

    Reverse routing.

    a

    Information carried by the request

    returns

    The URL and HTTP verb matching the a value.

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def matchRequestAndParseHeaders(requestHeader: RequestHeader)(entity: (UrlData, HeadersData) => RequestEntity[A]): Option[RequestEntity[A]]

    returns

    If the incoming requestHeader match this request description (the method and URL), validate the request URL parameters and headers. Otherwise, returns None.

    Attributes
    protected
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped