final class Request extends Serializable

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

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 addHeader(headers0: (String, String)*): Request
  5. def addHeaders(headers0: Map[String, List[String]]): Request
  6. def addHeaders(headers0: (String, String)*): Request
  7. def addQueryString(parameters: (String, String)*): Request
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. val authOpt: Option[Realm]
  10. val body: Body
  11. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def contentType: Option[String]
  13. def copy(url: String = url, method: String = method, body: Body = body, headers: Map[String, List[String]] = headers, queryString: Map[String, List[String]] = queryString, signatureOpt: Option[SignatureCalculator] = signatureOpt, authOpt: Option[Realm] = authOpt, followRedirectsOpt: Option[Boolean] = followRedirectsOpt, requestTimeoutOpt: Option[Duration] = requestTimeoutOpt, virtualHostOpt: Option[String] = virtualHostOpt, proxyServerOpt: Option[ProxyServer] = proxyServerOpt): Request
    Attributes
    protected[this]
  14. def delete: Request

    Uses DELETE method.

  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(o: Any): Boolean
    Definition Classes
    Request → AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. val followRedirectsOpt: Option[Boolean]
  19. def get: Request

    Uses GET method.

  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int
    Definition Classes
    Request → AnyRef → Any
  22. def head: Request

    Uses HEAD method.

  23. val headers: Map[String, List[String]]
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. val method: String
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  29. def options: Request

    Uses OPTIONS method.

  30. def patch(file: File): Request

    Uses PATCH method with the given file.

  31. def patch(body: String, charset: Charset): Request

    Uses PATCH method with the given body.

  32. def patch[A](body: A)(implicit arg0: HttpWrite[A]): Request

    Uses PATCH method with the given body.

  33. def post(file: File): Request

    Uses POST method with the given file.

  34. def post(body: String, charset: Charset): Request

    Uses POST method with the given body.

  35. def post[A](body: A)(implicit arg0: HttpWrite[A]): Request

    Uses POST method with the given body.

  36. val proxyServerOpt: Option[ProxyServer]
  37. def put(file: File): Request

    Uses PUT method with the given file.

  38. def put(body: String, charset: Charset): Request

    Uses PUT method with the given body.

  39. def put[A](body: A)(implicit arg0: HttpWrite[A]): Request

    Uses PUT method with the given body.

  40. val queryString: Map[String, List[String]]
  41. val requestTimeoutOpt: Option[Duration]
  42. val signatureOpt: Option[SignatureCalculator]
  43. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  44. def toString(): String
    Definition Classes
    Request → AnyRef → Any
  45. val url: String
  46. val virtualHostOpt: Option[String]
  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. def withAuth(username: String, password: String, scheme: AuthScheme): Request
  51. def withAuth(username: String, password: String): Request
  52. def withAuth(auth: Realm): Request
  53. def withAuthOpt(authOpt: Realm): Request
  54. def withAuthOpt(authOpt: Option[Realm]): Request
  55. def withBody(body: Body): Request
  56. def withBody[A](body: A)(implicit arg0: HttpWrite[A]): Request
  57. def withContentType(mt: String, charset: Charset): Request
  58. def withContentType(ct: String): Request
  59. def withFollowRedirects(follow: Boolean): Request
  60. def withFollowRedirectsOpt(followRedirectsOpt: Boolean): Request
  61. def withFollowRedirectsOpt(followRedirectsOpt: Option[Boolean]): Request
  62. def withHeaders(headers: Map[String, List[String]]): Request
  63. def withHeaders(headers0: (String, String)*): Request
  64. def withMethod(method: String): Request
  65. def withProxyServer(proxyServer: ProxyServer): Request
  66. def withProxyServerOpt(proxyServerOpt: ProxyServer): Request
  67. def withProxyServerOpt(proxyServerOpt: Option[ProxyServer]): Request
  68. def withQueryString(queryString: Map[String, List[String]]): Request
  69. def withQueryString(parameters: (String, String)*): Request
  70. def withRequestTimeout(requestTimeout: Duration): Request
  71. def withRequestTimeoutOpt(requestTimeoutOpt: Duration): Request
  72. def withRequestTimeoutOpt(requestTimeoutOpt: Option[Duration]): Request
  73. def withSignatureOpt(signatureOpt: SignatureCalculator): Request
  74. def withSignatureOpt(signatureOpt: Option[SignatureCalculator]): Request
  75. def withUrl(url: String): Request
  76. def withVirtualHost(virtualHost: String): Request
  77. def withVirtualHostOpt(virtualHostOpt: String): Request
  78. def withVirtualHostOpt(virtualHostOpt: Option[String]): Request

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped