Uses of Interface
io.helidon.webserver.Routing.Rules
-
Packages that use Routing.Rules Package Description io.helidon.dbclient.webserver.jsonp Support for sending DB Client results as JSON.io.helidon.health Health check support for helidon SE.io.helidon.media.jackson.server io.helidon.media.jsonb.server io.helidon.media.jsonp.server io.helidon.metrics Metrics support for Java SE, uses the Microprofile metrics APIs and formats.io.helidon.metrics.prometheus Support for Prometheus client endpoint.io.helidon.openapi Helidon SE OpenAPI Support.io.helidon.security.integration.webserver Integration library for RxServer.io.helidon.security.providers.oidc Integration with Open ID Connect providers.io.helidon.webserver Reactive web server API.io.helidon.webserver.accesslog Access log support for Helidon WebServer.io.helidon.webserver.jersey io.helidon.webserver.tyrus Tyrus integration. -
-
Uses of Routing.Rules in io.helidon.dbclient.webserver.jsonp
Methods in io.helidon.dbclient.webserver.jsonp with parameters of type Routing.Rules Modifier and Type Method Description voidDbResultSupport. update(Routing.Rules rules)Deprecated. -
Uses of Routing.Rules in io.helidon.health
Methods in io.helidon.health with parameters of type Routing.Rules Modifier and Type Method Description voidHealthSupport. update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.media.jackson.server
Methods in io.helidon.media.jackson.server with parameters of type Routing.Rules Modifier and Type Method Description voidJacksonSupport. update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.media.jsonb.server
Methods in io.helidon.media.jsonb.server with parameters of type Routing.Rules Modifier and Type Method Description voidJsonBindingSupport. update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.media.jsonp.server
Methods in io.helidon.media.jsonp.server with parameters of type Routing.Rules Modifier and Type Method Description voidJsonSupport. update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.metrics
Methods in io.helidon.metrics with parameters of type Routing.Rules Modifier and Type Method Description voidMetricsSupport. configureEndpoint(Routing.Rules rules)Configure metrics endpoint on the provided routing rules.voidMetricsSupport. configureVendorMetrics(String routingName, Routing.Rules rules)Configure vendor metrics on the provided routing.voidMetricsSupport. update(Routing.Rules rules)Method invoked by the web server to update routing rules. -
Uses of Routing.Rules in io.helidon.metrics.prometheus
Methods in io.helidon.metrics.prometheus with parameters of type Routing.Rules Modifier and Type Method Description voidPrometheusSupport. update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.openapi
Methods in io.helidon.openapi with parameters of type Routing.Rules Modifier and Type Method Description voidOpenAPISupport. configureEndpoint(Routing.Rules rules)Sets up the OpenAPI endpoint by adding routing to the specified rules set.voidOpenAPISupport. update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.security.integration.webserver
Methods in io.helidon.security.integration.webserver with parameters of type Routing.Rules Modifier and Type Method Description voidWebSecurity. update(Routing.Rules routing) -
Uses of Routing.Rules in io.helidon.security.providers.oidc
Methods in io.helidon.security.providers.oidc with parameters of type Routing.Rules Modifier and Type Method Description voidOidcSupport. update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.webserver
Classes in io.helidon.webserver that implement Routing.Rules Modifier and Type Class Description static classRouting.BuilderARoutingbuilder.Methods in io.helidon.webserver that return Routing.Rules Modifier and Type Method Description Routing.RulesRouting.Rules. any(Handler... requestHandlers)Routes all requests to provided handler(s).Routing.RulesRouting.Rules. any(PathMatcher pathMatcher, Handler... requestHandlers)Routes all requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. any(String pathPattern, Handler... requestHandlers)Routes all requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. anyOf(Iterable<Http.RequestMethod> methods, Handler... requestHandlers)Routes requests any specified method to provided handler(s).Routing.RulesRouting.Rules. anyOf(Iterable<Http.RequestMethod> methods, PathMatcher pathMatcher, Handler... requestHandlers)Routes requests with any specified method and corresponding path to provided handler(s).Routing.RulesRouting.Rules. anyOf(Iterable<Http.RequestMethod> methods, String pathPattern, Handler... requestHandlers)Routes requests with any specified method and corresponding path to provided handler(s).Routing.RulesRouting.Rules. delete(Handler... requestHandlers)Routes all DELETE requests to provided handler(s).Routing.RulesRouting.Rules. delete(PathMatcher pathMatcher, Handler... requestHandlers)Routes DELETE requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. delete(String pathPattern, Handler... requestHandlers)Routes DELETE requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. get(Handler... requestHandlers)Routes all GET requests to provided handler(s).Routing.RulesRouting.Rules. get(PathMatcher pathMatcher, Handler... requestHandlers)Routes GET requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. get(String pathPattern, Handler... requestHandlers)Routes GET requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. head(Handler... requestHandlers)Routes all HEAD requests to provided handler(s).Routing.RulesRouting.Rules. head(PathMatcher pathMatcher, Handler... requestHandlers)Routes HEAD requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. head(String pathPattern, Handler... requestHandlers)Routes HEAD requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. onNewWebServer(Consumer<WebServer> webServerConsumer)Registers callback on created newWebServerinstance with this routing.Routing.RulesRouting.Rules. options(Handler... requestHandlers)Routes all OPTIONS requests to provided handler(s).Routing.RulesRouting.Rules. options(PathMatcher pathMatcher, Handler... requestHandlers)Routes OPTIONS requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. options(String pathPattern, Handler... requestHandlers)Routes OPTIONS requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. post(Handler... requestHandlers)Routes all POST requests to provided handler(s).Routing.RulesRouting.Rules. post(PathMatcher pathMatcher, Handler... requestHandlers)Routes POST requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. post(String pathPattern, Handler... requestHandlers)Routes POST requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. put(Handler... requestHandlers)Routes all PUT requests to provided handler(s).Routing.RulesRouting.Rules. put(PathMatcher pathMatcher, Handler... requestHandlers)Routes PUT requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. put(String pathPattern, Handler... requestHandlers)Routes PUT requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. register(Service... services)Registers builder consumer.Routing.RulesRouting.Rules. register(WebTracingConfig webTracingConfig)Configuration of tracing for this routing.Routing.RulesRouting.Rules. register(String pathPattern, Service... services)Registers builder consumer.Routing.RulesRouting.Rules. register(String pathPattern, Supplier<? extends Service>... serviceBuilders)Registers builder consumer.Routing.RulesRouting.Rules. register(Supplier<? extends Service>... serviceBuilders)Registers builder consumer.Routing.RulesRouting.Rules. trace(Handler... requestHandlers)Routes all TRACE requests to provided handler(s).Routing.RulesRouting.Rules. trace(PathMatcher pathMatcher, Handler... requestHandlers)Routes TRACE requests with corresponding path to provided handler(s).Routing.RulesRouting.Rules. trace(String pathPattern, Handler... requestHandlers)Routes TRACE requests with corresponding path to provided handler(s).Methods in io.helidon.webserver with parameters of type Routing.Rules Modifier and Type Method Description voidFormParamsSupport. update(Routing.Rules rules)voidJsonService. update(Routing.Rules routingRules)Registers this handler for any HTTP method.voidService. update(Routing.Rules rules)UpdatesRouting.Ruleswithhandlersrepresenting this service.voidStaticContentSupport. update(Routing.Rules routing) -
Uses of Routing.Rules in io.helidon.webserver.accesslog
Methods in io.helidon.webserver.accesslog with parameters of type Routing.Rules Modifier and Type Method Description voidAccessLogSupport. update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.webserver.jersey
Methods in io.helidon.webserver.jersey with parameters of type Routing.Rules Modifier and Type Method Description voidJerseySupport. update(Routing.Rules routingRules) -
Uses of Routing.Rules in io.helidon.webserver.tyrus
Methods in io.helidon.webserver.tyrus with parameters of type Routing.Rules Modifier and Type Method Description voidTyrusSupport. update(Routing.Rules routingRules)Register our WebSocket handler for all routes.
-