Uses of Class
jakarta.ws.rs.core.Application
-
Packages that use Application Package Description jakarta.ws.rs High-level interfaces and annotations used to create RESTful service resources.jakarta.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API.org.glassfish.jersey.internal Common Jersey internal API classes.org.glassfish.jersey.server Jersey server-side classes.org.glassfish.jersey.server.internal Jersey server-side internal classes.org.glassfish.jersey.server.spi Jersey server-side service provider contract (SPI) classes. -
-
Uses of Application in jakarta.ws.rs
Methods in jakarta.ws.rs with parameters of type Application Modifier and Type Method Description static CompletionStage<SeBootstrap.Instance>SeBootstrap. start(Application application)Starts the provided application using a default configuration.static CompletionStage<SeBootstrap.Instance>SeBootstrap. start(Application application, SeBootstrap.Configuration configuration)Starts the provided application using the specified configuration.Method parameters in jakarta.ws.rs with type arguments of type Application Modifier and Type Method Description static CompletionStage<SeBootstrap.Instance>SeBootstrap. start(Class<? extends Application> clazz)Starts the provided application using a default configuration.static CompletionStage<SeBootstrap.Instance>SeBootstrap. start(Class<? extends Application> clazz, SeBootstrap.Configuration configuration)Starts the provided application using the specified configuration. -
Uses of Application in jakarta.ws.rs.ext
Methods in jakarta.ws.rs.ext with parameters of type Application Modifier and Type Method Description abstract CompletionStage<SeBootstrap.Instance>RuntimeDelegate. bootstrap(Application application, SeBootstrap.Configuration configuration)Perform startup of the application in Java SE environments.abstract <T> TRuntimeDelegate. createEndpoint(Application application, Class<T> endpointType)Create a configured instance of the supplied endpoint type.Method parameters in jakarta.ws.rs.ext with type arguments of type Application Modifier and Type Method Description abstract CompletionStage<SeBootstrap.Instance>RuntimeDelegate. bootstrap(Class<? extends Application> clazz, SeBootstrap.Configuration configuration)Perform startup of the application in Java SE environments. -
Uses of Application in org.glassfish.jersey.internal
Methods in org.glassfish.jersey.internal with parameters of type Application Modifier and Type Method Description CompletionStage<SeBootstrap.Instance>RuntimeDelegateImpl. bootstrap(Application application, SeBootstrap.Configuration configuration)<T> TRuntimeDelegateImpl. createEndpoint(Application application, Class<T> endpointType)Method parameters in org.glassfish.jersey.internal with type arguments of type Application Modifier and Type Method Description CompletionStage<SeBootstrap.Instance>RuntimeDelegateImpl. bootstrap(Class<? extends Application> applicationClass, SeBootstrap.Configuration configuration) -
Uses of Application in org.glassfish.jersey.server
Subclasses of Application in org.glassfish.jersey.server Modifier and Type Class Description classResourceConfigThe resource configuration for configuring a web application.Methods in org.glassfish.jersey.server that return Application Modifier and Type Method Description ApplicationResourceConfig. getApplication()Returns JAX-RS application corresponding with this ResourceConfig.ApplicationServerBootstrapBag. getApplication()Methods in org.glassfish.jersey.server with parameters of type Application Modifier and Type Method Description static <T> TContainerFactory. createContainer(Class<T> type, Application application)Create a container according to the class requested.static <T extends WebServer>
TWebServerFactory. createServer(Class<T> type, Application application, JerseySeBootstrapConfiguration configuration)Creates a server of a given type which runs the given application using the given bootstrap configuration.static ResourceConfigResourceConfig. forApplication(Application application)Returns aResourceConfiginstance for the supplied application.voidServerBootstrapBag. setApplication(Application application)Method parameters in org.glassfish.jersey.server with type arguments of type Application Modifier and Type Method Description static ResourceConfigResourceConfig. forApplicationClass(Class<? extends Application> applicationClass)Returns aResourceConfiginstance wrapping the application of the supplied class.static ResourceConfigResourceConfig. forApplicationClass(Class<? extends Application> applicationClass, Set<Class<?>> defaultClasses)Returns aResourceConfiginstance wrapping the application of the supplied class.Constructors in org.glassfish.jersey.server with parameters of type Application Constructor Description ApplicationHandler(Application application)Create a new Jersey server-side application handler configured by an instance of aJAX-RS Application sub-class.ApplicationHandler(Application application, org.glassfish.jersey.internal.inject.Binder customBinder)Create a new Jersey server-side application handler configured by an instance of aResourceConfigand a customBinder.ApplicationHandler(Application application, org.glassfish.jersey.internal.inject.Binder customBinder, Object parentManager)Create a new Jersey server-side application handler configured by an instance of aResourceConfig, customBinderand a parent used byInjectionManager.Constructor parameters in org.glassfish.jersey.server with type arguments of type Application Constructor Description ApplicationHandler(Class<? extends Application> jaxrsApplicationClass)Create a new Jersey server-side application handler configured by aJAX-RS Application (sub-)class.ApplicationHandler(Class<? extends Application> applicationClass, org.glassfish.jersey.internal.inject.Binder customBinder)Create a new Jersey server-side application handler configured by aJAX-RS Application (sub-)class. -
Uses of Application in org.glassfish.jersey.server.internal
Methods in org.glassfish.jersey.server.internal with parameters of type Application Modifier and Type Method Description CompletableFuture<SeBootstrap.Instance>RuntimeDelegateImpl. bootstrap(Application application, SeBootstrap.Configuration configuration)<T> TRuntimeDelegateImpl. createEndpoint(Application application, Class<T> endpointType)Method parameters in org.glassfish.jersey.server.internal with type arguments of type Application Modifier and Type Method Description CompletableFuture<SeBootstrap.Instance>RuntimeDelegateImpl. bootstrap(Class<? extends Application> applicationClass, SeBootstrap.Configuration configuration) -
Uses of Application in org.glassfish.jersey.server.spi
Methods in org.glassfish.jersey.server.spi with parameters of type Application Modifier and Type Method Description <T> TContainerProvider. createContainer(Class<T> type, Application application)Create an container of a given type.<T extends WebServer>
TWebServerProvider. createServer(Class<T> type, Application application, JerseySeBootstrapConfiguration configuration)Creates a server of a given type which runs the given application using the given bootstrap configuration.
-