Packages

case class RequestRoute(uriWithMajor: String, uriWithoutMajor: String, uri: Uri, method: HttpMethod) extends Product with Serializable

Used by requests for specifying an uri to send to, together with a method to use.

uriWithMajor

A string containing the route without any minor parameters filled in

uriWithoutMajor

A string containing the route without any major or minor parameters filled in

uri

The uri to send to

method

The method to use

Source
requestObjs.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestRoute
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RequestRoute(uriWithMajor: String, uriWithoutMajor: String, uri: Uri, method: HttpMethod)

    uriWithMajor

    A string containing the route without any minor parameters filled in

    uriWithoutMajor

    A string containing the route without any major or minor parameters filled in

    uri

    The uri to send to

    method

    The method to use

Value Members

  1. val method: HttpMethod
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val uri: Uri
  4. val uriWithMajor: String
  5. val uriWithoutMajor: String