Packages

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

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

Instance Constructors

  1. new RequestBuilder()

Abstract Value Members

  1. abstract def commonAttributes: CommonAttributes
    Attributes
    protected
  2. abstract def newInstance(commonAttributes: CommonAttributes): B
    Attributes
    protected

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 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

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def digestAuth(username: Expression[String], password: Expression[String]): B
  8. def disableUrlEncoding: B
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. 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

  14. 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

  15. def ignoreProtocolHeaders: B
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def multivaluedQueryParam(name: Expression[String], values: Expression[Seq[Any]]): B
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def proxy(httpProxy: Proxy): B
  22. def queryParam(name: Expression[String], value: Expression[Any]): B
  23. def queryParamMap(map: Expression[Map[String, Any]]): B
  24. def queryParamMap(map: Map[String, Any]): B
  25. def queryParamSeq(seq: Expression[Seq[(String, Any)]]): B
  26. def queryParamSeq(seq: Seq[(String, Any)]): B
  27. def sign(calculator: (Request, Session) => Validation[Request]): B
  28. def signWithOAuth1(consumerKey: Expression[String], clientSharedSecret: Expression[String], token: Expression[String], tokenSecret: Expression[String], useAuthoriationHeader: Boolean): B
  29. def signWithOAuth1(consumerKey: Expression[String], clientSharedSecret: Expression[String], token: Expression[String], tokenSecret: Expression[String]): B
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. 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 AnyRef

Inherited from Any

Ungrouped