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.
-
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.netty.httpserver
Methods in org.glassfish.jersey.netty.httpserver with type parameters of type WebServerModifier and TypeMethodDescription<T extends WebServer>
TNettyHttpServerProvider.createServer(Class<T> type, Application application, SeBootstrap.Configuration configuration) <T extends WebServer>
TNettyHttpServerProvider.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 respectiveWebServerclass 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 matchesWebServerProvidersupported type with the user type passed either asServerProperties.WEBSERVER_CLASSproperty (higher priority) or by theuserTypeargument (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 matchesWebServerProvidersupported type with the user type passed either asServerProperties.WEBSERVER_CLASSproperty (higher priority) or by theuserTypeargument (lower priority).