io.cequence.wsclient.service.WSClientEngine.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ws-client-core_3 Show documentation
Show all versions of ws-client-core_3 Show documentation
Generic WebServices library currently only with Play WS impl./backend
package io.cequence.wsclient.service
import io.cequence.wsclient.domain.WsRequestContext
// TODO: maybe rename to WSClientBackend?
trait WSClientEngine extends WSClient {
protected val coreUrl: String
protected val requestContext: WsRequestContext = WsRequestContext()
override type PEP = String
override type PT = String
}