| Modifier and Type | Method and Description |
|---|---|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> |
delete()
Invoke HTTP DELETE method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
delete(Class<T> responseType)
Invoke HTTP DELETE method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
delete(javax.ws.rs.core.GenericType<T> responseType)
Invoke HTTP DELETE method for the current request.
|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> |
get()
Invoke HTTP GET method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
get(Class<T> responseType)
Invoke HTTP GET method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
get(javax.ws.rs.core.GenericType<T> responseType)
Invoke HTTP GET method for the current request.
|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> |
head()
Invoke HTTP HEAD method for the current request.
|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> |
method(String name)
Invoke an arbitrary method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
method(String name,
Class<T> responseType)
Invoke an arbitrary method for the current request.
|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> |
method(String name,
javax.ws.rs.client.Entity<?> entity)
Invoke an arbitrary method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
method(String name,
javax.ws.rs.client.Entity<?> entity,
Class<T> responseType)
Invoke an arbitrary method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
method(String name,
javax.ws.rs.client.Entity<?> entity,
javax.ws.rs.core.GenericType<T> responseType)
Invoke an arbitrary method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
method(String name,
javax.ws.rs.core.GenericType<T> responseType)
Invoke an arbitrary method for the current request.
|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> |
options()
Invoke HTTP OPTIONS method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
options(Class<T> responseType)
Invoke HTTP OPTIONS method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
options(javax.ws.rs.core.GenericType<T> responseType)
Invoke HTTP OPTIONS method for the current request.
|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> |
post(javax.ws.rs.client.Entity<?> entity)
Invoke HTTP POST method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
post(javax.ws.rs.client.Entity<?> entity,
Class<T> clazz)
Invoke HTTP POST method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
post(javax.ws.rs.client.Entity<?> entity,
javax.ws.rs.core.GenericType<T> type)
Invoke HTTP POST method for the current request.
|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> |
put(javax.ws.rs.client.Entity<?> entity)
Invoke HTTP PUT method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
put(javax.ws.rs.client.Entity<?> entity,
Class<T> clazz)
Invoke HTTP PUT method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
put(javax.ws.rs.client.Entity<?> entity,
javax.ws.rs.core.GenericType<T> type)
Invoke HTTP PUT method for the current request.
|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> |
trace()
Invoke HTTP TRACE method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
trace(Class<T> responseType)
Invoke HTTP OPTIONS method for the current request.
|
<T> com.google.common.util.concurrent.ListenableFuture<T> |
trace(javax.ws.rs.core.GenericType<T> responseType)
Invoke HTTP TRACE method for the current request.
|
com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> get()
RxInvoker<T> com.google.common.util.concurrent.ListenableFuture<T> get(Class<T> responseType)
RxInvoker<T> com.google.common.util.concurrent.ListenableFuture<T> get(javax.ws.rs.core.GenericType<T> responseType)
RxInvokerget in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - generic response entity type.responseType - representation of a generic Java type the response entity will be converted to.com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> put(javax.ws.rs.client.Entity<?> entity)
RxInvokerput in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>entity - request entity, including it's full Variant information.
Any variant-related HTTP headers previously set (namely Content-Type,
Content-Language and Content-Encoding) will be overwritten using
the entity variant information.<T> com.google.common.util.concurrent.ListenableFuture<T> put(javax.ws.rs.client.Entity<?> entity,
Class<T> clazz)
RxInvokerput in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - response entity type.entity - request entity, including it's full Variant information.
Any variant-related HTTP headers previously set (namely Content-Type,
Content-Language and Content-Encoding) will be overwritten using
the entity variant information.clazz - Java type the response entity will be converted to.<T> com.google.common.util.concurrent.ListenableFuture<T> put(javax.ws.rs.client.Entity<?> entity,
javax.ws.rs.core.GenericType<T> type)
RxInvokerput in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - generic response entity type.entity - request entity, including it's full Variant information.
Any variant-related HTTP headers previously set (namely Content-Type,
Content-Language and Content-Encoding) will be overwritten using
the entity variant information.type - representation of a generic Java type the response entity will be converted to.com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> post(javax.ws.rs.client.Entity<?> entity)
RxInvokerpost in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>entity - request entity, including it's full Variant information.
Any variant-related HTTP headers previously set (namely Content-Type,
Content-Language and Content-Encoding) will be overwritten using
the entity variant information.<T> com.google.common.util.concurrent.ListenableFuture<T> post(javax.ws.rs.client.Entity<?> entity,
Class<T> clazz)
RxInvokerpost in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - response entity type.entity - request entity, including it's full Variant information.
Any variant-related HTTP headers previously set (namely Content-Type,
Content-Language and Content-Encoding) will be overwritten using
the entity variant information.clazz - Java type the response entity will be converted to.<T> com.google.common.util.concurrent.ListenableFuture<T> post(javax.ws.rs.client.Entity<?> entity,
javax.ws.rs.core.GenericType<T> type)
RxInvokerpost in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - generic response entity type.entity - request entity, including it's full Variant information.
Any variant-related HTTP headers previously set (namely Content-Type,
Content-Language and Content-Encoding) will be overwritten using
the entity variant information.type - representation of a generic Java type the response entity will be converted to.com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> delete()
RxInvoker<T> com.google.common.util.concurrent.ListenableFuture<T> delete(Class<T> responseType)
RxInvoker<T> com.google.common.util.concurrent.ListenableFuture<T> delete(javax.ws.rs.core.GenericType<T> responseType)
RxInvokerdelete in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - generic response entity type.responseType - representation of a generic Java type the response entity will be converted to.com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> head()
RxInvokercom.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> options()
RxInvoker<T> com.google.common.util.concurrent.ListenableFuture<T> options(Class<T> responseType)
RxInvoker<T> com.google.common.util.concurrent.ListenableFuture<T> options(javax.ws.rs.core.GenericType<T> responseType)
RxInvokeroptions in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - generic response entity type.responseType - representation of a generic Java type the response entity will be converted to.com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> trace()
RxInvoker<T> com.google.common.util.concurrent.ListenableFuture<T> trace(Class<T> responseType)
RxInvoker<T> com.google.common.util.concurrent.ListenableFuture<T> trace(javax.ws.rs.core.GenericType<T> responseType)
RxInvokertrace in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - generic response entity type.responseType - representation of a generic Java type the response entity will be converted to.com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> method(String name)
RxInvoker<T> com.google.common.util.concurrent.ListenableFuture<T> method(String name, Class<T> responseType)
RxInvokermethod in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - response entity type.name - method name.responseType - Java type the response entity will be converted to.<T> com.google.common.util.concurrent.ListenableFuture<T> method(String name, javax.ws.rs.core.GenericType<T> responseType)
RxInvokermethod in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - generic response entity type.name - method name.responseType - representation of a generic Java type the response entity will be converted to.com.google.common.util.concurrent.ListenableFuture<javax.ws.rs.core.Response> method(String name, javax.ws.rs.client.Entity<?> entity)
RxInvokermethod in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>name - method name.entity - request entity, including it's full Variant information.
Any variant-related HTTP headers previously set (namely Content-Type,
Content-Language and Content-Encoding) will be overwritten using
the entity variant information.<T> com.google.common.util.concurrent.ListenableFuture<T> method(String name, javax.ws.rs.client.Entity<?> entity, Class<T> responseType)
RxInvokermethod in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - response entity type.name - method name.entity - request entity, including it's full Variant information.
Any variant-related HTTP headers previously set (namely Content-Type,
Content-Language and Content-Encoding) will be overwritten using
the entity variant information.responseType - Java type the response entity will be converted to.<T> com.google.common.util.concurrent.ListenableFuture<T> method(String name, javax.ws.rs.client.Entity<?> entity, javax.ws.rs.core.GenericType<T> responseType)
RxInvokermethod in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>T - generic response entity type.name - method name.entity - request entity, including it's full Variant information.
Any variant-related HTTP headers previously set (namely Content-Type,
Content-Language and Content-Encoding) will be overwritten using
the entity variant information.responseType - representation of a generic Java type the response entity will be converted to.Copyright © 2007-2016, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.