class OkHttpClientHttpRequest extends AbstractBufferingClientHttpRequest
ClientHttpRequest implementation that uses OkHttp 2.x to execute requests.
Created via the OkHttpClientHttpRequestFactory.
OkHttp3ClientHttpRequest| Modifier and Type | Field and Description |
|---|---|
private OkHttpClient |
client |
private HttpMethod |
method |
private java.net.URI |
uri |
| Constructor and Description |
|---|
OkHttpClientHttpRequest(OkHttpClient client,
java.net.URI uri,
HttpMethod method) |
| Modifier and Type | Method and Description |
|---|---|
protected ClientHttpResponse |
executeInternal(HttpHeaders headers,
byte[] content)
Abstract template method that writes the given headers and content to the HTTP request.
|
HttpMethod |
getMethod()
Return the HTTP method of the request.
|
java.net.URI |
getURI()
Return the URI of the request.
|
executeInternal, getBodyInternalassertNotExecuted, execute, getBody, getHeadersprivate final OkHttpClient client
private final java.net.URI uri
private final HttpMethod method
public OkHttpClientHttpRequest(OkHttpClient client,
java.net.URI uri,
HttpMethod method)
public HttpMethod getMethod()
HttpRequestnull
if not resolvable (e.g. in case of a non-standard HTTP method)public java.net.URI getURI()
HttpRequestnull)protected ClientHttpResponse executeInternal(HttpHeaders headers, byte[] content) throws java.io.IOException
AbstractBufferingClientHttpRequestexecuteInternal in class AbstractBufferingClientHttpRequestheaders - the HTTP headerscontent - the body contentjava.io.IOException