public class AsyncWebResource extends Filterable implements AsyncClientHandler, RequestBuilder<AsyncWebResource.Builder>, AsyncUniformInterface
An AsyncWebResource instance is obtained from the Client.
The Web resource implements the AsyncUniformInterface to invoke the HTTP
method on the Web resource. A client request may be built before invocation
on the uniform interface.
Methods to create a request and return a response are thread-safe. Methods that modify filters are not guaranteed to be thread-safe.
com.sun.jersey.api.client| Modifier and Type | Class and Description |
|---|---|
class |
AsyncWebResource.Builder
The builder for building a
ClientRequest instance and
handling the request using the UniformInterface. |
| Modifier | Constructor and Description |
|---|---|
protected |
AsyncWebResource(AsyncWebResource that,
UriBuilder ub) |
protected |
AsyncWebResource(Client c,
com.sun.jersey.client.impl.CopyOnWriteHashMap<java.lang.String,java.lang.Object> properties,
java.net.URI u) |
| Modifier and Type | Method and Description |
|---|---|
AsyncWebResource.Builder |
accept(MediaType... types)
Add acceptable media types.
|
AsyncWebResource.Builder |
accept(java.lang.String... types)
Add acceptable media types.
|
AsyncWebResource.Builder |
acceptLanguage(java.util.Locale... locales)
Add acceptable languages
|
AsyncWebResource.Builder |
acceptLanguage(java.lang.String... locales)
Add acceptable languages
|
AsyncWebResource.Builder |
cookie(Cookie cookie)
Add a cookie to be set.
|
java.util.concurrent.Future<?> |
delete()
Invoke the DELETE method with no request entity or response.
|
<T> java.util.concurrent.Future<T> |
delete(java.lang.Class<T> c)
Invoke the DELETE method with no request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
delete(java.lang.Class<T> c,
java.lang.Object requestEntity)
Invoke the DELETE method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
delete(GenericType<T> gt)
Invoke the DELETE method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
delete(GenericType<T> gt,
java.lang.Object requestEntity)
Invoke the DELETE method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
delete(ITypeListener<T> l)
Invoke the DELETE method.
|
<T> java.util.concurrent.Future<T> |
delete(ITypeListener<T> l,
java.lang.Object requestEntity)
Invoke the DELETE method.
|
java.util.concurrent.Future<?> |
delete(java.lang.Object requestEntity)
Invoke the DELETE method with a request entity but no response.
|
AsyncWebResource.Builder |
entity(java.lang.Object entity)
Set the request entity.
|
AsyncWebResource.Builder |
entity(java.lang.Object entity,
MediaType type)
Set the request entity with its media type.
|
AsyncWebResource.Builder |
entity(java.lang.Object entity,
java.lang.String type)
Set the request entity with its media type.
|
boolean |
equals(java.lang.Object obj)
Compares this resource to the specified object.
|
<T> java.util.concurrent.Future<T> |
get(java.lang.Class<T> c)
Invoke the GET method.
|
<T> java.util.concurrent.Future<T> |
get(GenericType<T> gt)
Invoke the GET method.
|
<T> java.util.concurrent.Future<T> |
get(ITypeListener<T> l)
Invoke the GET method.
|
UriBuilder |
getBuilder()
Deprecated.
|
java.util.Map<java.lang.String,java.lang.Object> |
getProperties()
Gets WebResource related properties.
|
AsyncWebResource.Builder |
getRequestBuilder()
Get the ClientRequest builder.
|
java.net.URI |
getURI()
Get the URI to the resource.
|
UriBuilder |
getUriBuilder()
Get the URI builder to the resource.
|
java.util.concurrent.Future<ClientResponse> |
handle(ClientRequest request,
FutureListener<ClientResponse> l)
Invoke an asynchronous client request.
|
int |
hashCode()
Returns a hash code for this
WebResource. |
java.util.concurrent.Future<ClientResponse> |
head()
Invoke the HEAD method.
|
java.util.concurrent.Future<ClientResponse> |
head(ITypeListener<ClientResponse> l)
Invoke the HEAD method.
|
AsyncWebResource.Builder |
header(java.lang.String name,
java.lang.Object value)
Add an HTTP header and value.
|
java.util.concurrent.Future<?> |
method(java.lang.String method)
Invoke a HTTP method with no request entity or response.
|
<T> java.util.concurrent.Future<T> |
method(java.lang.String method,
java.lang.Class<T> c)
Invoke a HTTP method with no request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
method(java.lang.String method,
java.lang.Class<T> c,
java.lang.Object requestEntity)
Invoke a HTTP method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
method(java.lang.String method,
GenericType<T> gt)
Invoke a HTTP method with no request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
method(java.lang.String method,
GenericType<T> gt,
java.lang.Object requestEntity)
Invoke a HTTP method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
method(java.lang.String method,
ITypeListener<T> l)
Invoke a HTTP method with no request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
method(java.lang.String method,
ITypeListener<T> l,
java.lang.Object requestEntity)
Invoke a HTTP method with a request entity that returns a response.
|
java.util.concurrent.Future<?> |
method(java.lang.String method,
java.lang.Object requestEntity)
Invoke a HTTP method with a request entity but no response.
|
<T> java.util.concurrent.Future<T> |
options(java.lang.Class<T> c)
Invoke the OPTIONS method.
|
<T> java.util.concurrent.Future<T> |
options(GenericType<T> gt)
Invoke the OPTIONS method.
|
<T> java.util.concurrent.Future<T> |
options(ITypeListener<T> l)
Invoke the OPTIONS method.
|
AsyncWebResource |
path(java.lang.String path)
Create a new AsyncWebResource from this web resource with an additional path
added to the URI of this web resource.
|
java.util.concurrent.Future<?> |
post()
Invoke the POST method with no request entity or response.
|
<T> java.util.concurrent.Future<T> |
post(java.lang.Class<T> c)
Invoke the POST method with no request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
post(java.lang.Class<T> c,
java.lang.Object requestEntity)
Invoke the POST method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
post(GenericType<T> gt)
Invoke the POST method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
post(GenericType<T> gt,
java.lang.Object requestEntity)
Invoke the POST method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
post(ITypeListener<T> l)
Invoke the POST method.
|
<T> java.util.concurrent.Future<T> |
post(ITypeListener<T> l,
java.lang.Object requestEntity)
Invoke the POST method.
|
java.util.concurrent.Future<?> |
post(java.lang.Object requestEntity)
Invoke the POST method with a request entity but no response.
|
java.util.concurrent.Future<?> |
put()
Invoke the PUT method with no request entity or response.
|
<T> java.util.concurrent.Future<T> |
put(java.lang.Class<T> c)
Invoke the PUT method with no request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
put(java.lang.Class<T> c,
java.lang.Object requestEntity)
Invoke the PUT method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
put(GenericType<T> gt)
Invoke the PUT method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
put(GenericType<T> gt,
java.lang.Object requestEntity)
Invoke the PUT method with a request entity that returns a response.
|
<T> java.util.concurrent.Future<T> |
put(ITypeListener<T> l)
Invoke the PUT method.
|
<T> java.util.concurrent.Future<T> |
put(ITypeListener<T> l,
java.lang.Object requestEntity)
Invoke the PUT method.
|
java.util.concurrent.Future<?> |
put(java.lang.Object requestEntity)
Invoke the PUT method with a request entity but no response.
|
AsyncWebResource |
queryParam(java.lang.String key,
java.lang.String value)
Create a new WebResource from this web resource with an additional
query parameter added to the URI of this web resource.
|
AsyncWebResource |
queryParams(MultivaluedMap<java.lang.String,java.lang.String> params)
Create a new WebResource from this web resource with additional
query parameters added to the URI of this web resource.
|
void |
setProperty(java.lang.String property,
java.lang.Object value)
Sets WebResource related property.
|
java.lang.String |
toString() |
AsyncWebResource.Builder |
type(MediaType type)
Set the media type.
|
AsyncWebResource.Builder |
type(java.lang.String type)
Set the media type.
|
AsyncWebResource |
uri(java.net.URI uri)
Create a new AsyncWebResource from this web resource.
|
addFilter, getHeadHandler, isFilterPresent, isFilterPreset, removeAllFilters, removeFilterprotected AsyncWebResource(Client c, com.sun.jersey.client.impl.CopyOnWriteHashMap<java.lang.String,java.lang.Object> properties, java.net.URI u)
protected AsyncWebResource(AsyncWebResource that, UriBuilder ub)
public java.net.URI getURI()
@Deprecated public UriBuilder getBuilder()
public UriBuilder getUriBuilder()
public AsyncWebResource.Builder getRequestBuilder()
public java.lang.String toString()
toString in class java.lang.Objectpublic int hashCode()
WebResource.
The hash code is the hash code of URI of this
WebResource.
hashCode in class java.lang.ObjectWebResource.public boolean equals(java.lang.Object obj)
The result is true if and only if the argument is not null and is a
AsyncWebResource object whose URI is equal to the URI of this
AsyncWebResource.
equals in class java.lang.Objectobj - the object to compare this AsyncWebResource against.AsyncWebResource are equal; false otherwise.public java.util.concurrent.Future<ClientResponse> head()
AsyncUniformInterfacehead in interface AsyncUniformInterfacepublic java.util.concurrent.Future<ClientResponse> head(ITypeListener<ClientResponse> l)
AsyncUniformInterfacehead in interface AsyncUniformInterfacel - the listener to receive asynchronous callbacks.public <T> java.util.concurrent.Future<T> options(java.lang.Class<T> c)
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
options in interface AsyncUniformInterfaceT - the type of the response.c - the type of the returned response.c.public <T> java.util.concurrent.Future<T> options(GenericType<T> gt)
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
options in interface AsyncUniformInterfaceT - the type of the response.gt - the generic type of the returned response.public <T> java.util.concurrent.Future<T> options(ITypeListener<T> l)
AsyncUniformInterfaceoptions in interface AsyncUniformInterfaceT - the type of the response.l - the listener to receive asynchronous callbacks.public <T> java.util.concurrent.Future<T> get(java.lang.Class<T> c)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
get in interface AsyncUniformInterfaceT - the type of the response.c - the type of the returned response.c.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> get(GenericType<T> gt) throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
get in interface AsyncUniformInterfaceT - the type of the response.gt - the generic type of the returned response.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> get(ITypeListener<T> l)
AsyncUniformInterfaceget in interface AsyncUniformInterfaceT - the type of the response.l - the listener to receive asynchronous callbacks.public java.util.concurrent.Future<?> put()
throws UniformInterfaceException
AsyncUniformInterfaceIf the status of the HTTP response is less than 300 and a representation is present then that representation is ignored.
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300.
put in interface AsyncUniformInterfaceUniformInterfaceExceptionpublic java.util.concurrent.Future<?> put(java.lang.Object requestEntity)
throws UniformInterfaceException
AsyncUniformInterfaceIf the status of the HTTP response is less than 300 and a representation is present then that representation is ignored.
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300.
put in interface AsyncUniformInterfacerequestEntity - the request entity.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> put(java.lang.Class<T> c)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
put in interface AsyncUniformInterfaceT - the type of the response.c - the type of the returned response.c.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> put(GenericType<T> gt) throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
put in interface AsyncUniformInterfaceT - the type of the response.gt - the generic type of the returned response.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> put(ITypeListener<T> l)
AsyncUniformInterfaceput in interface AsyncUniformInterfaceT - the type of the response.l - the listener to receive asynchronous callbacks.public <T> java.util.concurrent.Future<T> put(java.lang.Class<T> c,
java.lang.Object requestEntity)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
put in interface AsyncUniformInterfaceT - the type of the response.c - the type of the returned response.requestEntity - the request entity.c.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> put(GenericType<T> gt, java.lang.Object requestEntity) throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
put in interface AsyncUniformInterfaceT - the type of the response.gt - the generic type of the returned response.requestEntity - the request entity.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> put(ITypeListener<T> l, java.lang.Object requestEntity)
AsyncUniformInterfaceput in interface AsyncUniformInterfaceT - the type of the response.l - the listener to receive asynchronous callbacks.requestEntity - the request entity.public java.util.concurrent.Future<?> post()
throws UniformInterfaceException
AsyncUniformInterfaceIf the status of the HTTP response is less than 300 and a representation is present then that representation is ignored.
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300.
post in interface AsyncUniformInterfaceUniformInterfaceExceptionpublic java.util.concurrent.Future<?> post(java.lang.Object requestEntity)
throws UniformInterfaceException
AsyncUniformInterfaceIf the status of the HTTP response is less than 300 and a representation is present then that representation is ignored.
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300.
post in interface AsyncUniformInterfacerequestEntity - the request entity.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> post(java.lang.Class<T> c)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
post in interface AsyncUniformInterfaceT - the type of the response.c - the type of the returned response.c.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> post(GenericType<T> gt) throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
post in interface AsyncUniformInterfaceT - the type of the response.gt - the generic type of the returned response.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> post(ITypeListener<T> l)
AsyncUniformInterfacepost in interface AsyncUniformInterfaceT - the type of the response.l - the listener to receive asynchronous callbacks.public <T> java.util.concurrent.Future<T> post(java.lang.Class<T> c,
java.lang.Object requestEntity)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
post in interface AsyncUniformInterfaceT - the type of the response.c - the type of the returned response.requestEntity - the request entity.c.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> post(GenericType<T> gt, java.lang.Object requestEntity) throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
post in interface AsyncUniformInterfaceT - the type of the response.gt - the generic type of the returned response.requestEntity - the request entity.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> post(ITypeListener<T> l, java.lang.Object requestEntity)
AsyncUniformInterfacepost in interface AsyncUniformInterfaceT - the type of the response.l - the listener to receive asynchronous callbacks.requestEntity - the request entity.public java.util.concurrent.Future<?> delete()
throws UniformInterfaceException
AsyncUniformInterfaceIf the status of the HTTP response is less than 300 and a representation is present then that representation is ignored.
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300.
delete in interface AsyncUniformInterfaceUniformInterfaceExceptionpublic java.util.concurrent.Future<?> delete(java.lang.Object requestEntity)
throws UniformInterfaceException
AsyncUniformInterfaceIf the status of the HTTP response is less than 300 and a representation is present then that representation is ignored.
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300.
delete in interface AsyncUniformInterfacerequestEntity - the request entity.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> delete(java.lang.Class<T> c)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
delete in interface AsyncUniformInterfaceT - the type of the response.c - the type of the returned response.c.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> delete(GenericType<T> gt) throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
delete in interface AsyncUniformInterfaceT - the type of the response.gt - the generic type of the returned response.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> delete(ITypeListener<T> l)
AsyncUniformInterfacedelete in interface AsyncUniformInterfaceT - the type of the response.l - the listener to receive asynchronous callbacks.public <T> java.util.concurrent.Future<T> delete(java.lang.Class<T> c,
java.lang.Object requestEntity)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
delete in interface AsyncUniformInterfaceT - the type of the response.c - the type of the returned response.requestEntity - the request entity.c.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> delete(GenericType<T> gt, java.lang.Object requestEntity) throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
delete in interface AsyncUniformInterfaceT - the type of the response.gt - the generic type of the returned response.requestEntity - the request entity.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> delete(ITypeListener<T> l, java.lang.Object requestEntity)
AsyncUniformInterfacedelete in interface AsyncUniformInterfaceT - the type of the response.l - the listener to receive asynchronous callbacks.requestEntity - the request entity.public java.util.concurrent.Future<?> method(java.lang.String method)
throws UniformInterfaceException
AsyncUniformInterfaceIf the status of the HTTP response is less than 300 and a representation is present then that representation is ignored.
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300.
method in interface AsyncUniformInterfacemethod - the HTTP method.UniformInterfaceExceptionpublic java.util.concurrent.Future<?> method(java.lang.String method,
java.lang.Object requestEntity)
throws UniformInterfaceException
AsyncUniformInterfaceIf the status of the HTTP response is less than 300 and a representation is present then that representation is ignored.
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300.
method in interface AsyncUniformInterfacemethod - the HTTP method.requestEntity - the request entity.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> method(java.lang.String method,
java.lang.Class<T> c)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
method in interface AsyncUniformInterfaceT - the type of the response.method - the HTTP method.c - the type of the returned response.c.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> method(java.lang.String method,
GenericType<T> gt)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
method in interface AsyncUniformInterfaceT - the type of the response.method - the HTTP method.gt - the generic type of the returned response.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> method(java.lang.String method,
ITypeListener<T> l)
AsyncUniformInterfacemethod in interface AsyncUniformInterfaceT - the type of the response.method - the HTTP method.l - the listener to receive asynchronous callbacks.public <T> java.util.concurrent.Future<T> method(java.lang.String method,
java.lang.Class<T> c,
java.lang.Object requestEntity)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
c is not the type ClientResponse.
method in interface AsyncUniformInterfaceT - the type of the response.method - the HTTP method.c - the type of the returned response.requestEntity - the request entity.c.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> method(java.lang.String method,
GenericType<T> gt,
java.lang.Object requestEntity)
throws UniformInterfaceException
AsyncUniformInterface
The Future.get() method will throw a UniformInterfaceException
if the status of the HTTP response is greater than or equal to 300 and
gt is not the type ClientResponse.
method in interface AsyncUniformInterfaceT - the type of the response.method - the HTTP method.gt - the generic type of the returned response.requestEntity - the request entity.UniformInterfaceExceptionpublic <T> java.util.concurrent.Future<T> method(java.lang.String method,
ITypeListener<T> l,
java.lang.Object requestEntity)
AsyncUniformInterfacemethod in interface AsyncUniformInterfaceT - the type of the response.method - the HTTP method.l - the listener to receive asynchronous callbacks.requestEntity - the request entity.public AsyncWebResource.Builder entity(java.lang.Object entity)
RequestBuilder
Any Java type instance for a request entity, that is supported by the client
configuration of the client, can be passed. If generic information is
required then an instance of GenericEntity may
be used.
entity in interface RequestBuilder<AsyncWebResource.Builder>entity - the request entitypublic AsyncWebResource.Builder entity(java.lang.Object entity, MediaType type)
RequestBuilder
Any Java type instance for a request entity, that is supported by the client
configuration of the client, can be passed. If generic information is
required then an instance of GenericEntity may
be used.
entity in interface RequestBuilder<AsyncWebResource.Builder>entity - the request entitytype - the media typepublic AsyncWebResource.Builder entity(java.lang.Object entity, java.lang.String type)
RequestBuilder
Any Java type instance for a request entity, that is supported by the client
configuration of the client, can be passed. If generic information is
required then an instance of GenericEntity may
be used.
entity in interface RequestBuilder<AsyncWebResource.Builder>entity - the request entitytype - the media typepublic AsyncWebResource.Builder type(MediaType type)
RequestBuildertype in interface RequestBuilder<AsyncWebResource.Builder>type - the media typepublic AsyncWebResource.Builder type(java.lang.String type)
RequestBuildertype in interface RequestBuilder<AsyncWebResource.Builder>type - the media typepublic AsyncWebResource.Builder accept(MediaType... types)
RequestBuilderaccept in interface RequestBuilder<AsyncWebResource.Builder>types - an array of the acceptable media typespublic AsyncWebResource.Builder accept(java.lang.String... types)
RequestBuilderaccept in interface RequestBuilder<AsyncWebResource.Builder>types - an array of the acceptable media typespublic AsyncWebResource.Builder acceptLanguage(java.util.Locale... locales)
RequestBuilderacceptLanguage in interface RequestBuilder<AsyncWebResource.Builder>locales - an array of the acceptable languagespublic AsyncWebResource.Builder acceptLanguage(java.lang.String... locales)
RequestBuilderacceptLanguage in interface RequestBuilder<AsyncWebResource.Builder>locales - an array of the acceptable languagespublic AsyncWebResource.Builder cookie(Cookie cookie)
RequestBuildercookie in interface RequestBuilder<AsyncWebResource.Builder>cookie - to be set.public AsyncWebResource.Builder header(java.lang.String name, java.lang.Object value)
RequestBuilderheader in interface RequestBuilder<AsyncWebResource.Builder>name - the HTTP header name.value - the HTTP header value.public AsyncWebResource path(java.lang.String path)
Any filters on this web resource are inherited. Removal of filters may cause undefined behaviour.
path - the additional path.public AsyncWebResource uri(java.net.URI uri)
If the URI contains a path component and the path starts with a '/' then the path of this web resource URI is replaced. Otherwise the path is appended.
If the URI contains query parameters then those query parameters will replace the query parameters (if any) of this web resource.
Any filters on this web resource are inherited. Removal of filters may cause undefined behaviour.
uri - the URI.public AsyncWebResource queryParam(java.lang.String key, java.lang.String value)
key - the query parameter namevalue - the query parameter valuepublic AsyncWebResource queryParams(MultivaluedMap<java.lang.String,java.lang.String> params)
params - the query parameters.public void setProperty(java.lang.String property,
java.lang.Object value)
property - property identifier.value - value of given property.public java.util.Map<java.lang.String,java.lang.Object> getProperties()
Properties are inherited, so setting propeties on "parent" WebResource instance, creating child (for example via WebResource.path("subpath")) will set parents properties on it. However changing child properties won't cause change in parent's properties.
Methods entrySet(), keySet() and values() are returning read-only results (via Collection.unmodifiableMap).
public java.util.concurrent.Future<ClientResponse> handle(ClientRequest request, FutureListener<ClientResponse> l)
AsyncClientHandlerhandle in interface AsyncClientHandlerrequest - the client request.l - the future listener to receive a completed Future with the
client response.Copyright © 2016 Oracle Corporation. All Rights Reserved.