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.grizzly2.httpserver |
Jersey Grizzly 2.x container classes.
|
org.glassfish.jersey.jdkhttp |
The container adapter between
JDK HTTP server
and Jersey Jersey application handler
classes. |
org.glassfish.jersey.jetty |
Jersey Jetty container classes.
|
org.glassfish.jersey.server |
Jersey server-side classes.
|
org.glassfish.jersey.server.mvc.spi |
Provides support for view aspect of model view controller and templates that
produce views.
|
org.glassfish.jersey.server.spi |
Jersey server-side service provider contract (SPI) classes.
|
org.glassfish.jersey.simple |
Jersey Simple 5.x container 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 | Method and Description |
---|---|
<T> T |
GrizzlyHttpContainerProvider.createContainer(Class<T> type,
Application application) |
Modifier and Type | Method and Description |
---|---|
<T> T |
JdkHttpHandlerContainerProvider.createContainer(Class<T> type,
Application application) |
Modifier and Type | Method and Description |
---|---|
<T> T |
JettyHttpContainerProvider.createContainer(Class<T> type,
Application application) |
static org.eclipse.jetty.server.Server |
JettyHttpContainerFactory.createServer(URI uri)
Creates a
Server instance that registers an Handler . |
static org.eclipse.jetty.server.Server |
JettyHttpContainerFactory.createServer(URI uri,
boolean start)
Creates a
Server instance that registers an Handler . |
static org.eclipse.jetty.server.Server |
JettyHttpContainerFactory.createServer(URI uri,
ResourceConfig config)
Create a
Server that registers an Handler that
in turn manages all root resource and provider classes declared by the
resource configuration. |
static org.eclipse.jetty.server.Server |
JettyHttpContainerFactory.createServer(URI uri,
ResourceConfig configuration,
boolean start)
Create a
Server that registers an Handler that
in turn manages all root resource and provider classes declared by the
resource configuration. |
static org.eclipse.jetty.server.Server |
JettyHttpContainerFactory.createServer(URI uri,
org.eclipse.jetty.util.ssl.SslContextFactory sslContextFactory,
ResourceConfig config)
Create a
Server that registers an Handler that
in turn manages all root resource and provider classes declared by the
resource configuration. |
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 | Class and Description |
---|---|
class |
ViewableContextException
A runtime exception associated with errors when resolving a
Viewable to a ResolvedViewable by methods on ViewableContext . |
Modifier and Type | Method and Description |
---|---|
<T> T |
ContainerProvider.createContainer(Class<T> type,
Application application)
Create an container of a given type.
|
Modifier and Type | Method and Description |
---|---|
static SimpleServer |
SimpleContainerFactory.create(URI address,
SSLContext context,
SimpleContainer container,
int count,
int select)
Create a
Closeable that registers an Container that
in turn manages all root resource and provider classes found by searching the
classes referenced in the java classpath. |
<T> T |
SimpleContainerProvider.createContainer(Class<T> type,
Application application) |
Copyright © 2007-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.