default ResponseHandler<?> |
WebTarget.rawRequest(HttpMethod method) |
Invoke an arbitrary method for the current request.
|
ResponseHandler<?> |
WebTarget.rawRequest(HttpMethod method,
Object body) |
Invoke an arbitrary method for the current request with serializing body depends on a Content-type.
|
default ResponseHandler<?> |
WebTarget.rawRequest(HttpMethod method,
String payload) |
Invoke an arbitrary method for the current request.
|
default ResponseHandler<?> |
WebTarget.rawRequest(HttpMethod method,
org.apache.hc.core5.http.HttpEntity httpEntity) |
Invoke an arbitrary method for the current request.
|
default Response |
WebTarget.request(HttpMethod method) |
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
TypeReference<T> responseType) |
Invoke an arbitrary method for the current request.
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
Class<T> responseType) |
Invoke an arbitrary method for the current request.
|
Response |
WebTarget.request(HttpMethod method,
Object body) |
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
Object body,
TypeReference<T> responseType) |
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
Object body,
Class<T> responseType) |
|
Response |
WebTarget.request(HttpMethod method,
String payload) |
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
String payload,
TypeReference<T> responseType) |
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
String payload,
Class<T> responseType) |
|
Response |
WebTarget.request(HttpMethod method,
org.apache.hc.core5.http.HttpEntity httpEntity) |
Invoke an arbitrary method for the current request.
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
org.apache.hc.core5.http.HttpEntity httpEntity,
TypeReference<T> responseType) |
Invoke an arbitrary method for the current request.
|
<T> ResponseHandler<T> |
WebTarget.request(HttpMethod method,
org.apache.hc.core5.http.HttpEntity httpEntity,
Class<T> responseType) |
Invoke an arbitrary method for the current request.
|
Response |
WebTarget.request(HttpMethod method,
org.apache.hc.core5.http.protocol.HttpContext context) |
Invoke an arbitrary method for the current request.
|