Uses of Interface
io.helidon.webserver.ServerConfiguration
-
Uses of ServerConfiguration in io.helidon.webserver
Methods in io.helidon.webserver that return ServerConfigurationModifier and TypeMethodDescriptionServerConfiguration.Builder.build()Deprecated.Builds a new configuration instance.WebServer.configuration()Gets effective server configuration.static ServerConfigurationCreates new instance with defaults from external configuration source.Methods in io.helidon.webserver with parameters of type ServerConfigurationModifier and TypeMethodDescriptionWebServer.Builder.config(ServerConfiguration configuration) Deprecated.static WebServerWebServer.create(ServerConfiguration configuration, Routing routing) Deprecated.since 2.0.0 - please useWebServer.create(Routing, io.helidon.config.Config)instead for instances based onConfig, orWebServer.builder(Routing)to configure server configuration by hand (as you would onSocketConfiguration.Buildernow.static WebServerWebServer.create(ServerConfiguration configuration, Supplier<? extends Routing> routingBuilder) Deprecated.since 2.0.0 - please useWebServer.create(java.util.function.Supplier, io.helidon.config.Config)instead for instances based onConfig, orWebServer.builder(java.util.function.Supplier)to configure server configuration by hand (as you would onSocketConfiguration.Buildernow.Routing.Builder.createServer(ServerConfiguration configuration) Deprecated.since 2.0.0, please useWebServer.Builder.build()to create a new server, configuring routing usingWebServer.Builder.routing(Routing).default WebServerRouting.createServer(ServerConfiguration configuration) Deprecated.since 2.0.0 please useWebServer.builder(Routing)instead<T> Optional<T>Transport.createTransportArtifact(Class<T> type, String name, ServerConfiguration config) Creates and returns a suitable transport artifact, if one can be created or is available, and an emptyOptionalotherwise.Method parameters in io.helidon.webserver with type arguments of type ServerConfigurationModifier and TypeMethodDescriptionWebServer.Builder.config(Supplier<ServerConfiguration> configurationBuilder) Deprecated.since 2.0.0 - seeWebServer.Builder.config(ServerConfiguration)static WebServerWebServer.create(Supplier<? extends ServerConfiguration> configurationBuilder, Routing routing) Deprecated.since 2.0.0 - please useWebServer.create(io.helidon.webserver.Routing, io.helidon.config.Config)instead for instances based onConfig, orWebServer.builder(io.helidon.webserver.Routing)to configure server configuration by hand (as you would onSocketConfiguration.Buildernow.static WebServerWebServer.create(Supplier<? extends ServerConfiguration> configurationBuilder, Supplier<? extends Routing> routingBuilder) Deprecated.since 2.0.0 - please useWebServer.create(java.util.function.Supplier, io.helidon.config.Config)instead for instances based onConfig, orWebServer.builder(java.util.function.Supplier)to configure server configuration by hand (as you would onSocketConfiguration.Buildernow.
WebServer.Builder.config(io.helidon.config.Config)instead