Uses of Interface
io.helidon.webserver.ServerConfiguration
-
Packages that use ServerConfiguration Package Description io.helidon.webserver Reactive web server API. -
-
Uses of ServerConfiguration in io.helidon.webserver
Methods in io.helidon.webserver that return ServerConfiguration Modifier and Type Method Description ServerConfiguration
ServerConfiguration.Builder. build()
Builds a new configuration instance.ServerConfiguration
WebServer. configuration()
Gets effective server configuration.static ServerConfiguration
ServerConfiguration. create(Config config)
Creates new instance with defaults from external configuration source.Methods in io.helidon.webserver with parameters of type ServerConfiguration Modifier and Type Method Description WebServer.Builder
WebServer.Builder. config(ServerConfiguration configuration)
Set a configuration of theWebServer
.static WebServer
WebServer. create(ServerConfiguration configuration, Routing routing)
Creates new instance form provided configuration and routing.static WebServer
WebServer. create(ServerConfiguration configuration, Supplier<? extends Routing> routingBuilder)
Creates new instance form provided configuration and routing.WebServer
Routing.Builder. createServer(ServerConfiguration configuration)
Creates newWebServer
instance with provided configuration and this routing.default WebServer
Routing. createServer(ServerConfiguration configuration)
Creates newWebServer
instance with provided configuration and this routing.Method parameters in io.helidon.webserver with type arguments of type ServerConfiguration Modifier and Type Method Description WebServer.Builder
WebServer.Builder. config(Supplier<ServerConfiguration> configurationBuilder)
Set a configuration of theWebServer
.static WebServer
WebServer. create(Supplier<? extends ServerConfiguration> configurationBuilder, Routing routing)
Creates a new instance from a provided configuration and a routing.static WebServer
WebServer. create(Supplier<? extends ServerConfiguration> configurationBuilder, Supplier<? extends Routing> routingBuilder)
Creates new instance form provided configuration and routing.
-