| Package | Description |
|---|---|
| javax.ws.rs.client |
The JAX-RS client API
|
| org.glassfish.jersey.client |
Jersey client-side classes.
|
| org.glassfish.jersey.client.authentication |
Provides core client authentication mechanisms.
|
| org.glassfish.jersey.server |
Jersey server-side classes.
|
| org.glassfish.jersey.server.spi |
Jersey server-side service provider contract (SPI) classes.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ResponseProcessingException
JAX-RS client-side runtime processing exception thrown to indicate that
response processing has failed (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
Response |
JerseyInvocation.Builder.delete() |
<T> T |
JerseyInvocation.Builder.delete(Class<T> responseType) |
<T> T |
JerseyInvocation.Builder.delete(GenericType<T> responseType) |
Response |
JerseyInvocation.Builder.get() |
<T> T |
JerseyInvocation.Builder.get(Class<T> responseType) |
<T> T |
JerseyInvocation.Builder.get(GenericType<T> responseType) |
Response |
JerseyInvocation.Builder.head() |
Response |
JerseyInvocation.invoke() |
<T> T |
JerseyInvocation.invoke(Class<T> responseType) |
<T> T |
JerseyInvocation.invoke(GenericType<T> responseType) |
Response |
JerseyInvocation.Builder.method(String name) |
<T> T |
JerseyInvocation.Builder.method(String name,
Class<T> responseType) |
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) |
<T> T |
JerseyInvocation.Builder.method(String name,
GenericType<T> responseType) |
Response |
JerseyInvocation.Builder.options() |
<T> T |
JerseyInvocation.Builder.options(Class<T> responseType) |
<T> T |
JerseyInvocation.Builder.options(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) |
<T> T |
ClientResponse.readEntity(Class<T> entityType)
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type. |
<T> T |
ClientResponse.readEntity(Class<T> entityType,
Annotation[] annotations)
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type. |
<T> T |
ClientResponse.readEntity(GenericType<T> entityType)
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type. |
<T> T |
ClientResponse.readEntity(GenericType<T> entityType,
Annotation[] annotations)
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type. |
Response |
JerseyInvocation.Builder.trace() |
<T> T |
JerseyInvocation.Builder.trace(Class<T> responseType) |
<T> T |
JerseyInvocation.Builder.trace(GenericType<T> responseType) |
| Modifier and Type | Class and Description |
|---|---|
class |
RequestAuthenticationException
Exception thrown by security request authentication.
|
class |
ResponseAuthenticationException
Exception thrown by security response authentication.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ContainerException
Exception thrown by the container components in to notify Jersey runtime about
any errors.
|
| Modifier and Type | Method and Description |
|---|---|
<T> T |
ContainerProvider.createContainer(Class<T> type,
Application application)
Create an container of a given type.
|
Copyright © 2007-2017, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.