Class

play.api.libs.ws.ahc

StandaloneAhcWSRequest

Related Doc: package ahc

Permalink

case class StandaloneAhcWSRequest(client: StandaloneAhcWSClient, url: String, method: String = "GET", body: WSBody = EmptyBody, headers: Map[String, Seq[String]] = TreeMap()(CaseInsensitiveOrdered), queryString: Map[String, Seq[String]] = Map.empty, cookies: Seq[WSCookie] = Seq.empty, calc: Option[WSSignatureCalculator] = None, auth: Option[(String, String, WSAuthScheme)] = None, followRedirects: Option[Boolean] = None, requestTimeout: Option[Int] = None, virtualHost: Option[String] = None, proxyServer: Option[WSProxyServer] = None, disableUrlEncoding: Option[Boolean] = None, filters: Seq[WSRequestFilter] = Nil)(implicit materializer: Materializer) extends StandaloneWSRequest with AhcUtilities with Product with Serializable

A Ahc WS Request.

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

Instance Constructors

  1. new StandaloneAhcWSRequest(client: StandaloneAhcWSClient, url: String, method: String = "GET", body: WSBody = EmptyBody, headers: Map[String, Seq[String]] = TreeMap()(CaseInsensitiveOrdered), queryString: Map[String, Seq[String]] = Map.empty, cookies: Seq[WSCookie] = Seq.empty, calc: Option[WSSignatureCalculator] = None, auth: Option[(String, String, WSAuthScheme)] = None, followRedirects: Option[Boolean] = None, requestTimeout: Option[Int] = None, virtualHost: Option[String] = None, proxyServer: Option[WSProxyServer] = None, disableUrlEncoding: Option[Boolean] = None, filters: Seq[WSRequestFilter] = Nil)(implicit materializer: Materializer)

    Permalink

Type Members

  1. type Response = StandaloneWSResponse

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  2. type Self = StandaloneWSRequest

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addCookies(cookies: WSCookie*): Self

    Permalink
    Definition Classes
    StandaloneWSRequest
  5. def addHttpHeaders(hdrs: (String, String)*): Self

    Permalink
    Definition Classes
    StandaloneWSRequest
  6. def addQueryStringParameter(parameters: (String, String)*): Self

    Permalink
    Definition Classes
    StandaloneWSRequest
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. val auth: Option[(String, String, WSAuthScheme)]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  9. val body: WSBody

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  10. def buildRequest(): Request

    Permalink

    Creates and returns an AHC request, running all operations on it.

  11. val calc: Option[WSSignatureCalculator]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  12. val client: StandaloneAhcWSClient

    Permalink
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def contentType: Option[String]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  15. val cookies: Seq[WSCookie]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  16. def delete(): Future[Response]

    Permalink

    Perform a DELETE on the request asynchronously.

    Perform a DELETE on the request asynchronously.

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  17. val disableUrlEncoding: Option[Boolean]

    Permalink
  18. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. def execute(): Future[Response]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  20. def execute(method: String): Future[Response]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  21. def filterWSRequestExecutor(next: WSRequestExecutor): WSRequestExecutor

    Permalink
    Attributes
    protected
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. val followRedirects: Option[Boolean]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  24. def get(): Future[Response]

    Permalink

    performs a get

    performs a get

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  25. def getBody: Option[ByteString]

    Permalink

    Returns the body as an array of bytes.

    Returns the body as an array of bytes. This is an AHC specific method.

  26. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  27. def head(): Future[Response]

    Permalink

    Perform a HEAD on the request asynchronously.

    Perform a HEAD on the request asynchronously.

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  28. def header(name: String): Option[String]

    Permalink
    Definition Classes
    StandaloneWSRequest
  29. def headerValues(name: String): Seq[String]

    Permalink
    Definition Classes
    StandaloneWSRequest
  30. val headers: Map[String, Seq[String]]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  31. def headersToMap(headers: HttpHeaders): TreeMap[String, Seq[String]]

    Permalink
    Definition Classes
    AhcUtilities
  32. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  33. val method: String

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  34. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  35. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  37. def options(): Future[Response]

    Permalink

    Perform a OPTIONS on the request asynchronously.

    Perform a OPTIONS on the request asynchronously.

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  38. def patch(body: File): Future[Response]

    Permalink

    Perform a PATCH on the request asynchronously.

    Perform a PATCH on the request asynchronously. Request body won't be chunked

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  39. def patch[T](body: T)(implicit arg0: BodyWritable[T]): Future[Response]

    Permalink

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  40. def post(body: File): Future[Response]

    Permalink

    Perform a POST on the request asynchronously.

    Perform a POST on the request asynchronously. Request body won't be chunked

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  41. def post[T](body: T)(implicit arg0: BodyWritable[T]): Future[Response]

    Permalink

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  42. val proxyServer: Option[WSProxyServer]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  43. def put(body: File): Future[Response]

    Permalink

    Perform a PUT on the request asynchronously.

    Perform a PUT on the request asynchronously. Request body won't be chunked

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  44. def put[T](body: T)(implicit arg0: BodyWritable[T]): Future[Response]

    Permalink

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  45. val queryString: Map[String, Seq[String]]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  46. def requestHeader(name: String): Option[String]

    Permalink

    Returns the HTTP header given by name, using the request builder.

    Returns the HTTP header given by name, using the request builder. This may be signed, so may return extra headers that were not directly input.

  47. def requestHeaders: Map[String, Seq[String]]

    Permalink

    Returns the current headers of the request, using the request builder.

    Returns the current headers of the request, using the request builder. This may be signed, so may return extra headers that were not directly input.

  48. def requestQueryParams: Map[String, Seq[String]]

    Permalink

    Returns the current query string parameters, using the request builder.

    Returns the current query string parameters, using the request builder. This may be signed, so may not return the same parameters that were input.

  49. val requestTimeout: Option[Int]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  50. def requestUrl: String

    Permalink

    Returns the current URL, using the request builder.

    Returns the current URL, using the request builder. This may be signed by OAuth, as opposed to request.url. This is an AHC specific method.

  51. def sign(calc: WSSignatureCalculator): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  52. def stream(): Future[StreamedResponse]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  53. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  54. lazy val uri: URI

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  55. val url: String

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  56. val virtualHost: Option[String]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  57. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  59. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  60. def withAuth(username: String, password: String, scheme: WSAuthScheme): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  61. def withBody[T](body: T)(implicit arg0: BodyWritable[T]): Self

    Permalink

    Sets the body for this request.

    Sets the body for this request.

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  62. def withBody(body: WSBody): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  63. def withBody(body: File): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  64. def withCookies(cookies: WSCookie*): StandaloneWSRequest

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  65. def withFollowRedirects(follow: Boolean): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  66. def withHttpHeaders(hdrs: (String, String)*): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  67. def withMethod(method: String): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  68. def withProxyServer(proxyServer: WSProxyServer): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  69. def withQueryStringParameters(parameters: (String, String)*): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  70. def withRequestFilter(filter: WSRequestFilter): Self

    Permalink

    Adds a filter to the request that can transform the request for subsequent filters.

    Adds a filter to the request that can transform the request for subsequent filters.

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  71. def withRequestTimeout(timeout: Duration): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  72. def withVirtualHost(vh: String): Self

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest

Deprecated Value Members

  1. def withHeaders(headers: (String, String)*): Self

    Permalink
    Definition Classes
    StandaloneWSRequest
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) Use withHttpHeaders or addHttpHeaders

  2. def withQueryString(parameters: (String, String)*): Self

    Permalink
    Definition Classes
    StandaloneWSRequest
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) Use withQueryStringParameters or addQueryStringParameter

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AhcUtilities

Inherited from StandaloneWSRequest

Inherited from AnyRef

Inherited from Any

Ungrouped