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, 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, 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. final def asInstanceOf[T0]: T0

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

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

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

    Permalink

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

  8. val calc: Option[WSSignatureCalculator]

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

    Permalink
  10. def clone(): AnyRef

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

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

    Permalink

    Perform a DELETE on the request asynchronously.

    Perform a DELETE on the request asynchronously.

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

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

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

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

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

    Permalink
    Attributes
    protected
  18. def finalize(): Unit

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

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

    Permalink

    performs a get

    performs a get

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  21. 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.

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

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

    Permalink

    Perform a HEAD on the request asynchronously.

    Perform a HEAD on the request asynchronously.

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  24. val headers: Map[String, Seq[String]]

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

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

    Permalink
    Definition Classes
    Any
  27. val method: String

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

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

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

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

    Permalink

    Perform a OPTIONS on the request asynchronously.

    Perform a OPTIONS on the request asynchronously.

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  32. 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
  33. def patch[T](body: T)(implicit arg0: BodyWritable[T]): Future[Response]

    Permalink

    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  34. 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
  35. def post[T](body: T)(implicit arg0: BodyWritable[T]): Future[Response]

    Permalink

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

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  37. 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
  38. def put[T](body: T)(implicit arg0: BodyWritable[T]): Future[Response]

    Permalink

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

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  40. 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.

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

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

  43. val requestTimeout: Option[Int]

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  44. 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.

  45. def sign(calc: WSSignatureCalculator): Self

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

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

    Permalink
    Definition Classes
    AnyRef
  48. lazy val uri: URI

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

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

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

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

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

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

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  55. 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
  56. def withBody(body: WSBody): Self

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

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

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

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

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

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

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest
  63. 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
  64. def withRequestTimeout(timeout: Duration): Self

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

    Permalink
    Definition Classes
    StandaloneAhcWSRequest → StandaloneWSRequest

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