Uses of Interface
org.glassfish.jersey.server.spi.WebServer
Packages that use WebServer
Package
Description
Jersey Grizzly 3.x container classes.
The container adapter between
JDK HTTP server
and Jersey Jersey application handler
classes.Jersey server-side classes.
Jersey server-side service provider contract (SPI) classes.
Jersey Simple 6.x container classes.
-
Uses of WebServer in org.glassfish.jersey.grizzly2.httpserver
Methods in org.glassfish.jersey.grizzly2.httpserver with type parameters of type WebServerModifier and TypeMethodDescription<T extends WebServer>
TGrizzlyHttpServerProvider.createServer
(Class<T> type, Application application, SeBootstrap.Configuration configuration) <T extends WebServer>
TGrizzlyHttpServerProvider.createServer
(Class<T> type, Class<? extends Application> applicationClass, SeBootstrap.Configuration configuration) -
Uses of WebServer in org.glassfish.jersey.jdkhttp
Methods in org.glassfish.jersey.jdkhttp with type parameters of type WebServerModifier and TypeMethodDescription<T extends WebServer>
TJdkHttpServerProvider.createServer
(Class<T> type, Application application, SeBootstrap.Configuration configuration) <T extends WebServer>
TJdkHttpServerProvider.createServer
(Class<T> type, Class<? extends Application> applicationClass, SeBootstrap.Configuration configuration) -
Uses of WebServer in org.glassfish.jersey.server
Methods in org.glassfish.jersey.server with type parameters of type WebServerModifier and TypeMethodDescriptionstatic <T extends WebServer>
TWebServerFactory.createServer
(Class<T> type, Application application, SeBootstrap.Configuration configuration) Creates a server of a given type which runs the given application using the given bootstrap configuration.static <T extends WebServer>
TWebServerFactory.createServer
(Class<T> type, Class<? extends Application> application, SeBootstrap.Configuration configuration) Creates a server of a given type which runs the given application using the given bootstrap configuration.Method parameters in org.glassfish.jersey.server with type arguments of type WebServerModifier and TypeMethodDescriptionJerseySeBootstrapConfiguration.Builder.webServerClass
(Class<? extends WebServer> webServerClass) Set the the respectiveWebServer
class to be used by theWebServerProvider
. -
Uses of WebServer in org.glassfish.jersey.server.spi
Methods in org.glassfish.jersey.server.spi with type parameters of type WebServerModifier and TypeMethodDescription<T extends WebServer>
TWebServerProvider.createServer
(Class<T> type, Application application, SeBootstrap.Configuration configuration) Creates a server of a given type which runs the given application using the given bootstrap configuration.<T extends WebServer>
TWebServerProvider.createServer
(Class<T> type, Class<? extends Application> applicationClass, SeBootstrap.Configuration configuration) Creates a server of a given type which runs the given application using the given bootstrap configuration.static <T extends WebServer>
booleanWebServerProvider.isSupportedWebServer
(Class<? extends WebServer> supportedType, Class<T> userType, SeBootstrap.Configuration configuration) Utility function that matchesWebServerProvider
supported type with the user type passed either asServerProperties.WEBSERVER_CLASS
property (higher priority) or by theuserType
argument (lower priority).Method parameters in org.glassfish.jersey.server.spi with type arguments of type WebServerModifier and TypeMethodDescriptionstatic <T extends WebServer>
booleanWebServerProvider.isSupportedWebServer
(Class<? extends WebServer> supportedType, Class<T> userType, SeBootstrap.Configuration configuration) Utility function that matchesWebServerProvider
supported type with the user type passed either asServerProperties.WEBSERVER_CLASS
property (higher priority) or by theuserType
argument (lower priority). -
Uses of WebServer in org.glassfish.jersey.simple
Methods in org.glassfish.jersey.simple with type parameters of type WebServerModifier and TypeMethodDescription<T extends WebServer>
TSimpleHttpServerProvider.createServer
(Class<T> type, Application application, SeBootstrap.Configuration configuration) <T extends WebServer>
TSimpleHttpServerProvider.createServer
(Class<T> type, Class<? extends Application> applicationClass, SeBootstrap.Configuration configuration)