| Package | Description |
|---|---|
| javax.ws.rs.client |
The JAX-RS client API
|
| Modifier and Type | Method and Description |
|---|---|
Response |
SyncInvoker.delete()
Invoke HTTP DELETE method for the current request synchronously.
|
<T> T |
SyncInvoker.delete(Class<T> responseType)
Invoke HTTP DELETE method for the current request synchronously.
|
<T> T |
SyncInvoker.delete(GenericType<T> responseType)
Invoke HTTP DELETE method for the current request synchronously.
|
Response |
SyncInvoker.get()
Invoke HTTP GET method for the current request synchronously.
|
<T> T |
SyncInvoker.get(Class<T> responseType)
Invoke HTTP GET method for the current request synchronously.
|
<T> T |
SyncInvoker.get(GenericType<T> responseType)
Invoke HTTP GET method for the current request synchronously.
|
Response |
SyncInvoker.head()
Invoke HTTP HEAD method for the current request synchronously.
|
Response |
Invocation.invoke()
Synchronously invoke the request and receive a response back.
|
<T> T |
Invocation.invoke(Class<T> responseType)
Synchronously invoke the request and receive a response of the specified
type back.
|
<T> T |
Invocation.invoke(GenericType<T> responseType)
Synchronously invoke the request and receive a response of the specified
generic type back.
|
Response |
SyncInvoker.method(String name)
Invoke an arbitrary method for the current request synchronously.
|
<T> T |
SyncInvoker.method(String name,
Class<T> responseType)
Invoke an arbitrary method for the current request synchronously.
|
Response |
SyncInvoker.method(String name,
Entity<?> entity)
Invoke an arbitrary method for the current request synchronously.
|
<T> T |
SyncInvoker.method(String name,
Entity<?> entity,
Class<T> responseType)
Invoke an arbitrary method for the current request synchronously.
|
<T> T |
SyncInvoker.method(String name,
Entity<?> entity,
GenericType<T> responseType)
Invoke an arbitrary method for the current request synchronously.
|
<T> T |
SyncInvoker.method(String name,
GenericType<T> responseType)
Invoke an arbitrary method for the current request synchronously.
|
Response |
SyncInvoker.options()
Invoke HTTP OPTIONS method for the current request synchronously.
|
<T> T |
SyncInvoker.options(Class<T> responseType)
Invoke HTTP OPTIONS method for the current request synchronously.
|
<T> T |
SyncInvoker.options(GenericType<T> responseType)
Invoke HTTP OPTIONS method for the current request synchronously.
|
Response |
SyncInvoker.post(Entity<?> entity)
Invoke HTTP POST method for the current request synchronously.
|
<T> T |
SyncInvoker.post(Entity<?> entity,
Class<T> responseType)
Invoke HTTP POST method for the current request synchronously.
|
<T> T |
SyncInvoker.post(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP POST method for the current request synchronously.
|
Response |
SyncInvoker.put(Entity<?> entity)
Invoke HTTP PUT method for the current request synchronously.
|
<T> T |
SyncInvoker.put(Entity<?> entity,
Class<T> responseType)
Invoke HTTP PUT method for the current request synchronously.
|
<T> T |
SyncInvoker.put(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP PUT method for the current request synchronously.
|
Response |
SyncInvoker.trace()
Invoke HTTP TRACE method for the current request synchronously.
|
<T> T |
SyncInvoker.trace(Class<T> responseType)
Invoke HTTP TRACE method for the current request synchronously.
|
<T> T |
SyncInvoker.trace(GenericType<T> responseType)
Invoke HTTP TRACE method for the current request synchronously.
|
Copyright © 2013. All Rights Reserved.