Package | Description |
---|---|
javax.ws.rs.client |
The JAX-RS client API
|
org.glassfish.jersey.client |
Jersey client-side classes.
|
org.glassfish.jersey.client.rx |
Jersey Reactive Client API.
|
org.glassfish.jersey.client.rx.guava |
Jersey Reactive Client - Guava (ListenableFuture) provider.
|
org.glassfish.jersey.client.rx.jsr166e |
Jersey Reactive Client - JSR 166e, pre-Java 8,
(CompletableFuture) provider.
|
org.glassfish.jersey.client.rx.rxjava |
Jersey Reactive Client - RxJava (Observable) provider.
|
org.glassfish.jersey.client.rx.spi |
Jersey Reactive Client SPI.
|
Modifier and Type | Method and Description |
---|---|
static <T> Entity<T> |
Entity.entity(T entity,
MediaType mediaType)
Create an entity using a supplied content media type.
|
static <T> Entity<T> |
Entity.entity(T entity,
MediaType mediaType,
Annotation[] annotations)
Create an entity using a supplied content media type.
|
static <T> Entity<T> |
Entity.entity(T entity,
String mediaType)
Create an entity using a supplied content media type.
|
static <T> Entity<T> |
Entity.entity(T entity,
Variant variant)
Create an entity using a supplied content media type.
|
static <T> Entity<T> |
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 <T> Entity<T> |
Entity.html(T entity)
Create a "text/html" entity.
|
static <T> Entity<T> |
Entity.json(T entity)
Create an "application/json" entity.
|
static <T> Entity<T> |
Entity.text(T entity)
Create a "text/plain" entity.
|
static <T> Entity<T> |
Entity.xhtml(T entity)
Create an "application/xhtml+xml" entity.
|
static <T> Entity<T> |
Entity.xml(T entity)
Create an "application/xml" entity.
|
Modifier and Type | Method and Description |
---|---|
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.
|
<T> T |
SyncInvoker.method(String name,
Entity<?> entity,
Class<T> responseType)
Invoke an arbitrary method for the current request synchronously.
|
<T> Future<T> |
AsyncInvoker.method(String name,
Entity<?> entity,
Class<T> responseType)
Invoke an arbitrary method for the current request asynchronously.
|
<T> T |
SyncInvoker.method(String name,
Entity<?> entity,
GenericType<T> responseType)
Invoke an arbitrary method for the current request synchronously.
|
<T> Future<T> |
AsyncInvoker.method(String name,
Entity<?> entity,
GenericType<T> responseType)
Invoke an arbitrary method for the current request asynchronously.
|
<T> Future<T> |
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.
|
<T> T |
SyncInvoker.post(Entity<?> entity,
Class<T> responseType)
Invoke HTTP POST method for the current request synchronously.
|
<T> Future<T> |
AsyncInvoker.post(Entity<?> entity,
Class<T> responseType)
Invoke HTTP POST method for the current request asynchronously.
|
<T> T |
SyncInvoker.post(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP POST method for the current request synchronously.
|
<T> Future<T> |
AsyncInvoker.post(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP POST method for the current request asynchronously.
|
<T> Future<T> |
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.
|
<T> T |
SyncInvoker.put(Entity<?> entity,
Class<T> responseType)
Invoke HTTP PUT method for the current request synchronously.
|
<T> Future<T> |
AsyncInvoker.put(Entity<?> entity,
Class<T> responseType)
Invoke HTTP PUT method for the current request asynchronously.
|
<T> T |
SyncInvoker.put(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP PUT method for the current request synchronously.
|
<T> Future<T> |
AsyncInvoker.put(Entity<?> entity,
GenericType<T> responseType)
Invoke HTTP PUT method for the current request asynchronously.
|
<T> Future<T> |
AsyncInvoker.put(Entity<?> entity,
InvocationCallback<T> callback)
Invoke HTTP PUT method for the current request asynchronously.
|
Modifier and Type | Method and Description |
---|---|
JerseyInvocation |
JerseyInvocation.Builder.build(String method,
Entity<?> entity) |
JerseyInvocation |
JerseyInvocation.Builder.buildPost(Entity<?> entity) |
JerseyInvocation |
JerseyInvocation.Builder.buildPut(Entity<?> entity) |
Response |
JerseyInvocation.Builder.method(String name,
Entity<?> entity) |
<T> T |
JerseyInvocation.Builder.method(String name,
Entity<?> entity,
Class<T> responseType) |
<T> T |
JerseyInvocation.Builder.method(String name,
Entity<?> entity,
GenericType<T> responseType) |
Response |
JerseyInvocation.Builder.post(Entity<?> entity) |
<T> T |
JerseyInvocation.Builder.post(Entity<?> entity,
Class<T> responseType) |
<T> T |
JerseyInvocation.Builder.post(Entity<?> entity,
GenericType<T> responseType) |
Response |
JerseyInvocation.Builder.put(Entity<?> entity) |
<T> T |
JerseyInvocation.Builder.put(Entity<?> entity,
Class<T> responseType) |
<T> T |
JerseyInvocation.Builder.put(Entity<?> entity,
GenericType<T> responseType) |
Modifier and Type | Method and Description |
---|---|
T |
RxInvoker.method(String name,
Entity<?> entity)
Invoke an arbitrary method for the current request.
|
<R> T |
RxInvoker.method(String name,
Entity<?> entity,
Class<R> responseType)
Invoke an arbitrary method for the current request.
|
<R> T |
RxInvoker.method(String name,
Entity<?> entity,
GenericType<R> responseType)
Invoke an arbitrary method for the current request.
|
T |
RxInvoker.post(Entity<?> entity)
Invoke HTTP POST method for the current request.
|
<R> T |
RxInvoker.post(Entity<?> entity,
Class<R> responseType)
Invoke HTTP POST method for the current request.
|
<R> T |
RxInvoker.post(Entity<?> entity,
GenericType<R> responseType)
Invoke HTTP POST method for the current request.
|
T |
RxInvoker.put(Entity<?> entity)
Invoke HTTP PUT method for the current request.
|
<R> T |
RxInvoker.put(Entity<?> entity,
Class<R> responseType)
Invoke HTTP PUT method for the current request.
|
<R> T |
RxInvoker.put(Entity<?> entity,
GenericType<R> responseType)
Invoke HTTP PUT method for the current request.
|
Modifier and Type | Method and Description |
---|---|
com.google.common.util.concurrent.ListenableFuture<Response> |
RxListenableFutureInvoker.method(String name,
Entity<?> entity) |
<T> com.google.common.util.concurrent.ListenableFuture<T> |
RxListenableFutureInvoker.method(String name,
Entity<?> entity,
Class<T> responseType) |
<T> com.google.common.util.concurrent.ListenableFuture<T> |
RxListenableFutureInvoker.method(String name,
Entity<?> entity,
GenericType<T> responseType) |
com.google.common.util.concurrent.ListenableFuture<Response> |
RxListenableFutureInvoker.post(Entity<?> entity) |
<T> com.google.common.util.concurrent.ListenableFuture<T> |
RxListenableFutureInvoker.post(Entity<?> entity,
Class<T> clazz) |
<T> com.google.common.util.concurrent.ListenableFuture<T> |
RxListenableFutureInvoker.post(Entity<?> entity,
GenericType<T> type) |
com.google.common.util.concurrent.ListenableFuture<Response> |
RxListenableFutureInvoker.put(Entity<?> entity) |
<T> com.google.common.util.concurrent.ListenableFuture<T> |
RxListenableFutureInvoker.put(Entity<?> entity,
Class<T> clazz) |
<T> com.google.common.util.concurrent.ListenableFuture<T> |
RxListenableFutureInvoker.put(Entity<?> entity,
GenericType<T> type) |
Modifier and Type | Method and Description |
---|---|
CompletableFuture<Response> |
RxCompletableFutureInvoker.method(String name,
Entity<?> entity) |
<T> CompletableFuture<T> |
RxCompletableFutureInvoker.method(String name,
Entity<?> entity,
Class<T> responseType) |
<T> CompletableFuture<T> |
RxCompletableFutureInvoker.method(String name,
Entity<?> entity,
GenericType<T> responseType) |
CompletableFuture<Response> |
RxCompletableFutureInvoker.post(Entity<?> entity) |
<T> CompletableFuture<T> |
RxCompletableFutureInvoker.post(Entity<?> entity,
Class<T> clazz) |
<T> CompletableFuture<T> |
RxCompletableFutureInvoker.post(Entity<?> entity,
GenericType<T> type) |
CompletableFuture<Response> |
RxCompletableFutureInvoker.put(Entity<?> entity) |
<T> CompletableFuture<T> |
RxCompletableFutureInvoker.put(Entity<?> entity,
Class<T> clazz) |
<T> CompletableFuture<T> |
RxCompletableFutureInvoker.put(Entity<?> entity,
GenericType<T> type) |
Modifier and Type | Method and Description |
---|---|
rx.Observable<Response> |
RxObservableInvoker.method(String name,
Entity<?> entity) |
<T> rx.Observable<T> |
RxObservableInvoker.method(String name,
Entity<?> entity,
Class<T> responseType) |
<T> rx.Observable<T> |
RxObservableInvoker.method(String name,
Entity<?> entity,
GenericType<T> responseType) |
rx.Observable<Response> |
RxObservableInvoker.post(Entity<?> entity) |
<T> rx.Observable<T> |
RxObservableInvoker.post(Entity<?> entity,
Class<T> clazz) |
<T> rx.Observable<T> |
RxObservableInvoker.post(Entity<?> entity,
GenericType<T> type) |
rx.Observable<Response> |
RxObservableInvoker.put(Entity<?> entity) |
<T> rx.Observable<T> |
RxObservableInvoker.put(Entity<?> entity,
Class<T> clazz) |
<T> rx.Observable<T> |
RxObservableInvoker.put(Entity<?> entity,
GenericType<T> type) |
Modifier and Type | Method and Description |
---|---|
T |
AbstractRxInvoker.method(String name,
Entity<?> entity) |
T |
AbstractRxInvoker.post(Entity<?> entity) |
<R> T |
AbstractRxInvoker.post(Entity<?> entity,
Class<R> clazz) |
<R> T |
AbstractRxInvoker.post(Entity<?> entity,
GenericType<R> type) |
T |
AbstractRxInvoker.put(Entity<?> entity) |
<R> T |
AbstractRxInvoker.put(Entity<?> entity,
Class<R> clazz) |
<R> T |
AbstractRxInvoker.put(Entity<?> entity,
GenericType<R> type) |
Copyright © 2007-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.