case class RequestBuilder(client: Client, reversePath: List[String] = Nil, method: Method = Get, queryParameters: Map[String, HttpParam] = Map.empty, formParameters: Map[String, HttpParam] = Map.empty, multipartParams: List[BodyPart] = List.empty, binaryBody: Option[BinaryRequest] = None, headers: HeaderMap = HeaderMap()) extends Product with Serializable

Created by peter on 21/05/15, Atomic BITS (http://atomicbits.io).

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestBuilder
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RequestBuilder(client: Client, reversePath: List[String] = Nil, method: Method = Get, queryParameters: Map[String, HttpParam] = Map.empty, formParameters: Map[String, HttpParam] = Map.empty, multipartParams: List[BodyPart] = List.empty, binaryBody: Option[BinaryRequest] = None, headers: HeaderMap = HeaderMap())

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. lazy val allHeaders: HeaderMap
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val binaryBody: Option[BinaryRequest]
  7. def callToBinaryResponse(body: Option[String]): Future[Response[BinaryData]]
  8. def callToJsonResponse(body: Option[String]): Future[Response[JsValue]]
  9. def callToStringResponse(body: Option[String]): Future[Response[String]]
  10. def callToTypeResponse[R](body: Option[String])(implicit responseFormat: Format[R]): Future[Response[R]]
  11. val client: Client
  12. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def defaultHeaders: Map[String, String]
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. val formParameters: Map[String, HttpParam]
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  18. val headers: HeaderMap
  19. def isFormPost: Boolean
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def isMultipartFormUpload: Boolean
  22. val method: Method
  23. val multipartParams: List[BodyPart]
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  27. val queryParameters: Map[String, HttpParam]
  28. def relativePath: String
  29. val reversePath: List[String]
  30. def summary: String
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def withAddedHeaders(additionalHeaders: (String, String)*): RequestBuilder
  36. def withAddedPathSegment(additionalPathSegment: Any): RequestBuilder
  37. def withSetHeaders(additionalHeaders: (String, String)*): RequestBuilder

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped