Package | Description |
---|---|
javax.ws.rs.client |
The JAX-RS client API
|
javax.ws.rs.core |
Low-level interfaces and annotations used to create RESTful service
resources.
|
org.glassfish.jersey.apache.connector |
Jersey client
connector based on the
Apache Http Client. |
org.glassfish.jersey.client |
Jersey client-side classes.
|
org.glassfish.jersey.client.rx |
Jersey Reactive Client API.
|
org.glassfish.jersey.grizzly.connector |
Jersey client
connector based on the
Grizzly Async Client. |
org.glassfish.jersey.jetty.connector |
Jersey client
connector based on the
Jetty Client. |
org.glassfish.jersey.server |
Jersey server-side classes.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Client
Client is the main entry point to the fluent API used to build and execute client
requests in order to consume responses returned.
|
interface |
WebTarget
A resource target identified by the resource URI.
|
Modifier and Type | Class and Description |
---|---|
class |
ClientBuilder
Main entry point to the client API used to bootstrap
Client
instances. |
Modifier and Type | Interface and Description |
---|---|
interface |
Configurable<C extends Configurable>
Represents a client or server-side configurable context in JAX-RS.
|
Modifier and Type | Interface and Description |
---|---|
interface |
FeatureContext
A configurable context passed to
Feature and DynamicFeature
instances by JAX-RS runtime during the phase of their configuration. |
Modifier and Type | Method and Description |
---|---|
static org.apache.http.client.CookieStore |
ApacheConnectorProvider.getCookieStore(Configurable<?> component)
Retrieve the underlying Apache
CookieStore instance from
JerseyClient or JerseyWebTarget
configured to use ApacheConnectorProvider . |
static org.apache.http.client.HttpClient |
ApacheConnectorProvider.getHttpClient(Configurable<?> component)
Retrieve the underlying Apache
HttpClient instance from
JerseyClient or JerseyWebTarget
configured to use ApacheConnectorProvider . |
Modifier and Type | Class and Description |
---|---|
class |
ClientConfig
Jersey externalized implementation of client-side JAX-RS
configurable contract. |
class |
JerseyClient
Jersey implementation of
JAX-RS Client
contract. |
class |
JerseyClientBuilder
Jersey provider of
JAX-RS client builder . |
class |
JerseyWebTarget
Jersey implementation of
JAX-RS client target
contract. |
Modifier and Type | Interface and Description |
---|---|
interface |
RxClient<RX extends RxInvoker>
RxClient is the main entry point to the fluent API used to build and execute (reactive) client requests in order to consume
responses returned.
|
interface |
RxWebTarget<RX extends RxInvoker>
A reactive resource target identified by the resource URI.
|
Modifier and Type | Method and Description |
---|---|
static com.ning.http.client.AsyncHttpClient |
GrizzlyConnectorProvider.getHttpClient(Configurable<?> component)
Retrieve the underlying Grizzly
AsyncHttpClient instance from
JerseyClient or JerseyWebTarget
configured to use GrizzlyConnectorProvider . |
Modifier and Type | Method and Description |
---|---|
static org.eclipse.jetty.client.HttpClient |
JettyConnectorProvider.getHttpClient(Configurable<?> component)
Retrieve the underlying Jetty
HttpClient instance from
JerseyClient or JerseyWebTarget
configured to use JettyConnectorProvider . |
Modifier and Type | Class and Description |
---|---|
class |
ResourceConfig
The resource configuration for configuring a web application.
|
Copyright © 2007-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.