| Methods in javax.ws.rs.client with parameters of type Entity |
Invocation |
Invocation.Builder.build(String method,
Entity<?> entity)
Build a request invocation using an arbitrary request method name and
request entity. |
Invocation |
Invocation.Builder.buildPost(Entity<?> entity)
Build a POST request invocation. |
Invocation |
Invocation.Builder.buildPut(Entity<?> entity)
Build a PUT request invocation. |
Invocation |
Client.invocation(Link link,
Entity<?> entity)
Build an invocation from a link. |
Future<Response> |
AsyncInvoker.method(String name,
Entity<?> entity)
|
Response |
SyncInvoker.method(String name,
Entity<?> entity)
|
|
AsyncInvoker.method(String name,
Entity<?> entity,
Class<T> responseType)
|
|
SyncInvoker.method(String name,
Entity<?> entity,
Class<T> responseType)
|
|
AsyncInvoker.method(String name,
Entity<?> entity,
InvocationCallback<T> callback)
|
|
AsyncInvoker.method(String name,
Entity<?> entity,
TypeLiteral<T> responseType)
|
|
SyncInvoker.method(String name,
Entity<?> entity,
TypeLiteral<T> responseType)
|
Future<Response> |
AsyncInvoker.post(Entity<?> entity)
|
Response |
SyncInvoker.post(Entity<?> entity)
|
|
AsyncInvoker.post(Entity<?> entity,
Class<T> responseType)
|
|
SyncInvoker.post(Entity<?> entity,
Class<T> responseType)
|
|
AsyncInvoker.post(Entity<?> entity,
InvocationCallback<T> callback)
|
|
AsyncInvoker.post(Entity<?> entity,
TypeLiteral<T> responseType)
|
|
SyncInvoker.post(Entity<?> entity,
TypeLiteral<T> responseType)
|
Future<Response> |
AsyncInvoker.put(Entity<?> entity)
|
Response |
SyncInvoker.put(Entity<?> entity)
|
|
AsyncInvoker.put(Entity<?> entity,
Class<T> responseType)
|
|
SyncInvoker.put(Entity<?> entity,
Class<T> responseType)
|
|
AsyncInvoker.put(Entity<?> entity,
InvocationCallback<T> callback)
|
|
AsyncInvoker.put(Entity<?> entity,
TypeLiteral<T> responseType)
|
|
SyncInvoker.put(Entity<?> entity,
TypeLiteral<T> responseType)
|
Future<Response> |
AsyncInvoker.trace(Entity<?> entity)
|
Response |
SyncInvoker.trace(Entity<?> entity)
|
|
AsyncInvoker.trace(Entity<?> entity,
Class<T> responseType)
|
|
SyncInvoker.trace(Entity<?> entity,
Class<T> responseType)
|
|
AsyncInvoker.trace(Entity<?> entity,
InvocationCallback<T> callback)
|
|
AsyncInvoker.trace(Entity<?> entity,
TypeLiteral<T> responseType)
|
|
SyncInvoker.trace(Entity<?> entity,
TypeLiteral<T> responseType)
|