Package | Description |
---|---|
javax.ws.rs.ext |
APIs that provide extensions to the types supported by the JAX-RS API.
|
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.spi |
Jersey server-side service provider contract (SPI) classes.
|
org.glassfish.jersey.simple |
Jersey Simple 5.x container classes.
|
org.glassfish.jersey.test |
Jersey test framework common classes that support testing JAX-RS and Jersey-based applications.
|
Modifier and Type | Method and Description |
---|---|
abstract <T> T |
RuntimeDelegate.createEndpoint(Application application,
Class<T> endpointType)
Create a configured instance of the supplied endpoint type.
|
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) |
Modifier and Type | Class and Description |
---|---|
class |
ResourceConfig
The resource configuration for configuring a web application.
|
Modifier and Type | Method and Description |
---|---|
Application |
ResourceConfig.getApplication()
Returns JAX-RS application corresponding with this ResourceConfig.
|
Modifier and Type | Method and Description |
---|---|
static <T> T |
ContainerFactory.createContainer(Class<T> type,
Application application)
Create a container according to the class requested.
|
static ResourceConfig |
ResourceConfig.forApplication(Application application)
Returns a
ResourceConfig instance for the supplied application. |
Modifier and Type | Method and Description |
---|---|
static ResourceConfig |
ResourceConfig.forApplicationClass(Class<? extends Application> applicationClass)
Returns a
ResourceConfig instance wrapping the application of the supplied class. |
static ResourceConfig |
ResourceConfig.forApplicationClass(Class<? extends Application> applicationClass,
Set<Class<?>> defaultClasses)
Returns a
ResourceConfig instance wrapping the application of the supplied class. |
Constructor and Description |
---|
ApplicationHandler(Application application)
Create a new Jersey server-side application handler configured by an instance
of a
JAX-RS Application sub-class . |
ApplicationHandler(Application application,
org.glassfish.hk2.utilities.Binder customBinder)
Create a new Jersey server-side application handler configured by an instance
of a
ResourceConfig and a custom Binder . |
ApplicationHandler(Application application,
org.glassfish.hk2.utilities.Binder customBinder,
org.glassfish.hk2.api.ServiceLocator parent)
Create a new Jersey server-side application handler configured by an instance
of a
ResourceConfig , custom Binder and a parent ServiceLocator . |
Constructor and Description |
---|
ApplicationHandler(Class<? extends Application> jaxrsApplicationClass)
Create a new Jersey server-side application handler configured by a
JAX-RS Application (sub-)class . |
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 |
---|---|
<T> T |
SimpleContainerProvider.createContainer(Class<T> type,
Application application) |
Modifier and Type | Method and Description |
---|---|
protected Application |
JerseyTest.configure()
Create the tested JAX-RS /Jersey application.
|
Modifier and Type | Method and Description |
---|---|
static ServletDeploymentContext.Builder |
ServletDeploymentContext.builder(Application application)
Create a new servlet deployment context builder for a JAX-RS / Jersey application instance.
|
static DeploymentContext.Builder |
DeploymentContext.builder(Application application)
Create a new deployment context builder for a JAX-RS / Jersey application instance.
|
static ServletDeploymentContext |
ServletDeploymentContext.newInstance(Application application)
Create a new servlet deployment context for a JAX-RS / Jersey application instance.
|
static DeploymentContext |
DeploymentContext.newInstance(Application application)
Create a new deployment context for a JAX-RS / Jersey application instance.
|
Modifier and Type | Method and Description |
---|---|
static ServletDeploymentContext.Builder |
ServletDeploymentContext.builder(Class<? extends Application> applicationClass)
Create a new servlet deployment context builder for a JAX-RS / Jersey application instance.
|
static DeploymentContext.Builder |
DeploymentContext.builder(Class<? extends Application> applicationClass)
Create a new deployment context builder for a JAX-RS / Jersey application instance.
|
static ServletDeploymentContext |
ServletDeploymentContext.newInstance(Class<? extends Application> applicationClass)
Create a new servlet deployment context for a JAX-RS / Jersey application instance.
|
static DeploymentContext |
DeploymentContext.newInstance(Class<? extends Application> applicationClass)
Create a new deployment context for a JAX-RS / Jersey application instance.
|
Constructor and Description |
---|
DeploymentContext.Builder(Application app)
Create new deployment context builder instance and bind it to the JAX-RS / Jersey application instance.
|
JerseyTest(Application jaxrsApplication)
Initialize JerseyTest instance.
|
JerseyTestNg.ContainerPerClassTest(Application jaxrsApplication) |
JerseyTestNg.ContainerPerMethodTest(Application jaxrsApplication) |
JerseyTestNg(Application jaxrsApplication)
Initialize JerseyTestNg instance.
|
ServletDeploymentContext.Builder(Application app)
Create new deployment context builder instance and bind it to the JAX-RS / Jersey application instance.
|
Constructor and Description |
---|
DeploymentContext.Builder(Class<? extends Application> appClass)
Create new deployment context builder instance and bind it to the JAX-RS / Jersey application class.
|
ServletDeploymentContext.Builder(Class<? extends Application> appClass)
Create new deployment context builder instance and bind it to the JAX-RS / Jersey application class.
|
Copyright © 2007-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.