Packages

abstract class RequestWithBodyBuilder[B <: RequestWithBodyBuilder[B]] extends RequestBuilder[B]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestWithBodyBuilder
  2. RequestBuilder
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RequestWithBodyBuilder()

Abstract Value Members

  1. abstract def bodyAttributes: BodyAttributes
    Attributes
    protected
  2. abstract def commonAttributes: CommonAttributes
    Attributes
    protected
    Definition Classes
    RequestBuilder
  3. abstract def newInstance(bodyAttributes: BodyAttributes): B
    Attributes
    protected
  4. abstract def newInstance(commonAttributes: CommonAttributes): B
    Attributes
    protected
    Definition Classes
    RequestBuilder

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. def asFormUrlEncoded: B
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def asJson: B

    Adds Accept and Content-Type headers to the request set with "application/json" values

  7. def asMultipartForm: B

    Adds Content-Type header to the request set with "multipart/form-data" value

  8. def asXml: B

    Adds Accept and Content-Type headers to the request set with "application/xml" values

  9. def basicAuth(username: Expression[String], password: Expression[String]): B

    Adds BASIC authentication to the request

    Adds BASIC authentication to the request

    username

    the username needed

    password

    the password needed

    Definition Classes
    RequestBuilder
  10. def body(bd: Body): B
  11. def bodyPart(part: BodyPart): B
  12. def bodyParts(parts: BodyPart*): B
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  14. def digestAuth(username: Expression[String], password: Expression[String]): B
    Definition Classes
    RequestBuilder
  15. def disableUrlEncoding: B
    Definition Classes
    RequestBuilder
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. def form(form: Expression[Map[String, Any]]): B
  19. def formParam(key: Expression[String], value: Expression[Any]): B
  20. def formParamMap(map: Expression[Map[String, Any]]): B
  21. def formParamMap(map: Map[String, Any]): B
  22. def formParamSeq(seq: Expression[Seq[(String, Any)]]): B
  23. def formParamSeq(seq: Seq[(String, Any)]): B
  24. def formUpload(name: Expression[String], filePath: Expression[String])(implicit rawFileBodies: RawFileBodies): B
  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def header(name: CharSequence, value: Expression[String]): B

    Adds a header to the request

    Adds a header to the request

    name

    the name of the header

    value

    the value of the header

    Definition Classes
    RequestBuilder
  28. def headers(newHeaders: Map[_ <: CharSequence, String]): B

    Adds several headers to the request at the same time

    Adds several headers to the request at the same time

    newHeaders

    a scala map containing the headers to add

    Definition Classes
    RequestBuilder
  29. def ignoreProtocolHeaders: B
    Definition Classes
    RequestBuilder
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def multivaluedFormParam(key: Expression[String], values: Expression[Seq[Any]]): B
  32. def multivaluedQueryParam(name: Expression[String], values: Expression[Seq[Any]]): B
    Definition Classes
    RequestBuilder
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. def processRequestBody(processor: (Body) => Body): B
  37. def proxy(httpProxy: Proxy): B
    Definition Classes
    RequestBuilder
  38. def queryParam(name: Expression[String], value: Expression[Any]): B
    Definition Classes
    RequestBuilder
  39. def queryParamMap(map: Expression[Map[String, Any]]): B
    Definition Classes
    RequestBuilder
  40. def queryParamMap(map: Map[String, Any]): B
    Definition Classes
    RequestBuilder
  41. def queryParamSeq(seq: Expression[Seq[(String, Any)]]): B
    Definition Classes
    RequestBuilder
  42. def queryParamSeq(seq: Seq[(String, Any)]): B
    Definition Classes
    RequestBuilder
  43. def sign(calculator: (Request, Session) => Validation[Request]): B
    Definition Classes
    RequestBuilder
  44. def signWithOAuth1(consumerKey: Expression[String], clientSharedSecret: Expression[String], token: Expression[String], tokenSecret: Expression[String], useAuthoriationHeader: Boolean): B
    Definition Classes
    RequestBuilder
  45. def signWithOAuth1(consumerKey: Expression[String], clientSharedSecret: Expression[String], token: Expression[String], tokenSecret: Expression[String]): B
    Definition Classes
    RequestBuilder
  46. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  47. def toString(): String
    Definition Classes
    AnyRef → Any
  48. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from RequestBuilder[B]

Inherited from AnyRef

Inherited from Any

Ungrouped