Package

giterrific.driver

http

Permalink

package http

Visibility
  1. Public
  2. All

Type Members

  1. case class WS25HttpDriver(wsClient: WSClient) extends HttpDriver[WS25HttpReq] with Product with Serializable

    Permalink

    An implementation of a Giterrific HTTP driver based on Play 2.5's implementation of the WS library.

    An implementation of a Giterrific HTTP driver based on Play 2.5's implementation of the WS library.

    wsClient

    The WS Client that should be used to make requests.

  2. case class WS25HttpReq(url: String, headers: Map[String, String] = Map.empty, query: Map[String, String] = Map.empty) extends HttpReq[WS25HttpReq] with Product with Serializable

    Permalink

    A data structure representing a request that will be used with Play 2.5's implementation of the WS library.

    A data structure representing a request that will be used with Play 2.5's implementation of the WS library.

    url

    The URL to issue the request to.

    headers

    The headers to use for the request.

    query

    The query string parameters for the request.

Ungrouped