|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Entity | |
---|---|
javax.ws.rs.client | The JAX-RS client API |
org.jboss.resteasy.client.jaxrs.internal |
Uses of Entity in javax.ws.rs.client |
---|
Methods in javax.ws.rs.client that return Entity | ||
---|---|---|
static
|
Entity.entity(T entity,
MediaType mediaType)
Create an entity using a supplied content media type. |
|
static
|
Entity.entity(T entity,
MediaType mediaType,
Annotation[] annotations)
Create an entity using a supplied content media type. |
|
static
|
Entity.entity(T entity,
String mediaType)
Create an entity using a supplied content media type. |
|
static
|
Entity.entity(T entity,
Variant variant)
Create an entity using a supplied content media type. |
|
static
|
Entity.entity(T entity,
Variant variant,
Annotation[] annotations)
Create an entity using a supplied content media type. |
|
static Entity<Form> |
Entity.form(Form form)
Create an "application/x-www-form-urlencoded" form entity. |
|
static Entity<Form> |
Entity.form(MultivaluedMap<String,String> formData)
Create an "application/x-www-form-urlencoded" form entity. |
|
static
|
Entity.html(T entity)
Create a "text/html" entity. |
|
static
|
Entity.json(T entity)
Create an "application/json" entity. |
|
static
|
Entity.text(T entity)
Create a "text/plain" entity. |
|
static
|
Entity.xhtml(T entity)
Create an "application/xhtml+xml" entity. |
|
static
|
Entity.xml(T entity)
Create an "application/xml" entity. |
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. |
|
Response |
SyncInvoker.method(String name,
Entity<?> entity)
Invoke an arbitrary method for the current request synchronously. |
|
Future<Response> |
AsyncInvoker.method(String name,
Entity<?> entity)
Invoke an arbitrary method for the current request asynchronously. |
|
|
SyncInvoker.method(String name,
Entity<?> entity,
Class<T> responseType)
Invoke an arbitrary method for the current request synchronously. |
|
|
AsyncInvoker.method(String name,
Entity<?> entity,
Class<T> responseType)
Invoke an arbitrary method for the current request asynchronously. |
|
|
SyncInvoker.method(String name,
Entity<?> entity,
GenericType<T> responseType)
Invoke an arbitrary method for the current request synchronously. |
|
|
AsyncInvoker.method(String name,
Entity<?> entity,
GenericType<T> responseType)
Invoke an arbitrary method for the current request asynchronously. |
|
|
AsyncInvoker.method(String name,
Entity<?> entity,
InvocationCallback<T> callback)
Invoke an arbitrary method for the current request asynchronously. |
|
Response |
SyncInvoker.post(Entity<?> entity)
Invoke HTTP POST method for the current request synchronously. |
|
Future<Response> |
AsyncInvoker.post(Entity<?> entity)
Invoke HTTP POST method for the current request asynchronously. |
|
|
SyncInvoker.post(Entity<?> entity,
Class<T> responseType)
Invoke HTTP POST method for the current request synchronously. |
|
|
AsyncInvoker.post(Entity<?> entity,
Class<T> responseType)
Invoke HTTP POST method for the current request asynchronously. |
|
|
SyncInvoker.post(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP POST method for the current request synchronously. |
|
|
AsyncInvoker.post(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP POST method for the current request asynchronously. |
|
|
AsyncInvoker.post(Entity<?> entity,
InvocationCallback<T> callback)
Invoke HTTP POST method for the current request asynchronously. |
|
Response |
SyncInvoker.put(Entity<?> entity)
Invoke HTTP PUT method for the current request synchronously. |
|
Future<Response> |
AsyncInvoker.put(Entity<?> entity)
Invoke HTTP PUT method for the current request asynchronously. |
|
|
SyncInvoker.put(Entity<?> entity,
Class<T> responseType)
Invoke HTTP PUT method for the current request synchronously. |
|
|
AsyncInvoker.put(Entity<?> entity,
Class<T> responseType)
Invoke HTTP PUT method for the current request asynchronously. |
|
|
SyncInvoker.put(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP PUT method for the current request synchronously. |
|
|
AsyncInvoker.put(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP PUT method for the current request asynchronously. |
|
|
AsyncInvoker.put(Entity<?> entity,
InvocationCallback<T> callback)
Invoke HTTP PUT method for the current request asynchronously. |
Uses of Entity in org.jboss.resteasy.client.jaxrs.internal |
---|
Methods in org.jboss.resteasy.client.jaxrs.internal with parameters of type Entity | ||
---|---|---|
Invocation |
ClientInvocationBuilder.build(String method,
Entity<?> entity)
|
|
Invocation |
ClientInvocationBuilder.buildPost(Entity<?> entity)
|
|
Invocation |
ClientInvocationBuilder.buildPut(Entity<?> entity)
|
|
Response |
ClientInvocationBuilder.method(String name,
Entity<?> entity)
|
|
Future<Response> |
AsynchronousInvoke.method(String name,
Entity<?> entity)
|
|
|
ClientInvocationBuilder.method(String name,
Entity<?> entity,
Class<T> responseType)
|
|
|
AsynchronousInvoke.method(String name,
Entity<?> entity,
Class<T> responseType)
|
|
|
ClientInvocationBuilder.method(String name,
Entity<?> entity,
GenericType<T> responseType)
|
|
|
AsynchronousInvoke.method(String name,
Entity<?> entity,
GenericType<T> responseType)
|
|
|
AsynchronousInvoke.method(String name,
Entity<?> entity,
InvocationCallback<T> callback)
|
|
Response |
ClientInvocationBuilder.post(Entity<?> entity)
|
|
Future<Response> |
AsynchronousInvoke.post(Entity<?> entity)
|
|
|
ClientInvocationBuilder.post(Entity<?> entity,
Class<T> responseType)
|
|
|
AsynchronousInvoke.post(Entity<?> entity,
Class<T> responseType)
|
|
|
ClientInvocationBuilder.post(Entity<?> entity,
GenericType<T> responseType)
|
|
|
AsynchronousInvoke.post(Entity<?> entity,
GenericType<T> responseType)
|
|
|
AsynchronousInvoke.post(Entity<?> entity,
InvocationCallback<T> callback)
|
|
Response |
ClientInvocationBuilder.put(Entity<?> entity)
|
|
Future<Response> |
AsynchronousInvoke.put(Entity<?> entity)
|
|
|
ClientInvocationBuilder.put(Entity<?> entity,
Class<T> responseType)
|
|
|
AsynchronousInvoke.put(Entity<?> entity,
Class<T> responseType)
|
|
|
ClientInvocationBuilder.put(Entity<?> entity,
GenericType<T> responseType)
|
|
|
AsynchronousInvoke.put(Entity<?> entity,
GenericType<T> responseType)
|
|
|
AsynchronousInvoke.put(Entity<?> entity,
InvocationCallback<T> callback)
|
|
void |
ClientInvocation.setEntity(Entity entity)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |