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.
|
org.glassfish.jersey.grizzly.connector |
Jersey client
connector based on the
Grizzly Async Client. |
Modifier and Type | Method and Description |
---|---|
Invocation.Builder |
Invocation.Builder.accept(MediaType... mediaTypes)
Add the accepted response media types.
|
Invocation.Builder |
Invocation.Builder.accept(String... mediaTypes)
Add the accepted response media types.
|
Invocation.Builder |
Invocation.Builder.acceptEncoding(String... encodings)
Add acceptable encodings.
|
Invocation.Builder |
Invocation.Builder.acceptLanguage(Locale... locales)
Add acceptable languages.
|
Invocation.Builder |
Invocation.Builder.acceptLanguage(String... locales)
Add acceptable languages.
|
Invocation.Builder |
Invocation.Builder.cacheControl(CacheControl cacheControl)
Set the cache control data of the message.
|
Invocation.Builder |
Invocation.Builder.cookie(Cookie cookie)
Add a cookie to be set.
|
Invocation.Builder |
Invocation.Builder.cookie(String name,
String value)
Add a cookie to be set.
|
Invocation.Builder |
Invocation.Builder.header(String name,
Object value)
Add an arbitrary header.
|
Invocation.Builder |
Invocation.Builder.headers(MultivaluedMap<String,Object> headers)
Replaces all existing headers with the newly supplied headers.
|
Invocation.Builder |
Client.invocation(Link link)
Build an invocation builder from a link.
|
Invocation.Builder |
Invocation.Builder.property(String name,
Object value)
Set a new property in the context of a request represented by this invocation builder.
|
Invocation.Builder |
WebTarget.request()
Start building a request to the targeted web resource.
|
Invocation.Builder |
WebTarget.request(MediaType... acceptedResponseTypes)
Start building a request to the targeted web resource and define the accepted
response media types.
|
Invocation.Builder |
WebTarget.request(String... acceptedResponseTypes)
Start building a request to the targeted web resource and define the accepted
response media types.
|
Modifier and Type | Class and Description |
---|---|
static class |
JerseyInvocation.Builder
Jersey-specific
client invocation builder . |
Modifier and Type | Method and Description |
---|---|
Invocation.Builder |
JerseyInvocation.Builder.acceptEncoding(String... encodings) |
Modifier and Type | Interface and Description |
---|---|
interface |
RxInvocationBuilder<RX extends RxInvoker>
A reactive client request invocation builder.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
RxListenableFutureInvokerProvider.getInvoker(Class<T> invokerType,
Invocation.Builder builder,
ExecutorService executor) |
Modifier and Type | Method and Description |
---|---|
<T> T |
RxCompletableFutureInvokerProvider.getInvoker(Class<T> invokerType,
Invocation.Builder builder,
ExecutorService executor) |
Modifier and Type | Method and Description |
---|---|
<T> T |
RxObservableInvokerProvider.getInvoker(Class<T> invokerType,
Invocation.Builder builder,
ExecutorService executor) |
Modifier and Type | Method and Description |
---|---|
protected Invocation.Builder |
AbstractRxInvoker.getBuilder()
Return invocation builder this reactive invoker was initialized with.
|
Modifier and Type | Method and Description |
---|---|
<RX> RX |
RxInvokerProvider.getInvoker(Class<RX> invokerType,
Invocation.Builder builder,
ExecutorService executor)
Create an invoker of a given type.
|
Constructor and Description |
---|
AbstractRxInvoker(Invocation.Builder builder,
ExecutorService executor) |
Modifier and Type | Method and Description |
---|---|
static Invocation.Builder |
GrizzlyConnectorProvider.register(Invocation.Builder builder,
GrizzlyConnectorProvider.RequestCustomizer customizer)
Register a request customizer for a single request.
|
Modifier and Type | Method and Description |
---|---|
static Invocation.Builder |
GrizzlyConnectorProvider.register(Invocation.Builder builder,
GrizzlyConnectorProvider.RequestCustomizer customizer)
Register a request customizer for a single request.
|
Copyright © 2007-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.