Uses of Interface
io.helidon.webserver.Routing.Rules
Packages that use Routing.Rules
Package
Description
GraphQL server implementation for Helidon SE.
Health check support for helidon SE.
Support for Micrometer in Helidon SE.
Integrating with OCI Metrics.
Metrics support for Java SE, uses the Microprofile metrics APIs and formats.
Support for Prometheus client endpoint.
API and minimal implementation for metrics support service.
Helidon SE OpenAPI Support.
Integration library for RxServer.
Integration with Open ID Connect providers.
Support types for REST services.
Reactive web server API.
Access log support for Helidon WebServer.
Helidon SE CORS Support
-
Uses of Routing.Rules in io.helidon.graphql.server
Methods in io.helidon.graphql.server with parameters of type Routing.Rules -
Uses of Routing.Rules in io.helidon.health
Methods in io.helidon.health with parameters of type Routing.RulesModifier and TypeMethodDescriptionprotected voidHealthSupport.postConfigureEndpoint(Routing.Rules defaultRules, Routing.Rules serviceEndpointRoutingRules) voidHealthSupport.update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.integrations.micrometer
Methods in io.helidon.integrations.micrometer with parameters of type Routing.RulesModifier and TypeMethodDescriptionprotected voidMicrometerSupport.postConfigureEndpoint(Routing.Rules defaultRules, Routing.Rules serviceEndpointRoutingRules) voidMicrometerSupport.update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.integrations.oci.metrics
Methods in io.helidon.integrations.oci.metrics with parameters of type Routing.Rules -
Uses of Routing.Rules in io.helidon.metrics
Methods in io.helidon.metrics with parameters of type Routing.RulesModifier and TypeMethodDescriptionvoidMetricsSupport.configureVendorMetrics(String routingName, Routing.Rules rules) Configure vendor metrics on the provided routing.protected voidMetricsSupport.postConfigureEndpoint(Routing.Rules defaultRules, Routing.Rules serviceEndpointRoutingRules) Finish configuring metrics endpoint on the provided routing rules.voidMetricsSupport.prepareMetricsEndpoints(String endpointContext, Routing.Rules serviceEndpointRoutingRules) 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 -
Uses of Routing.Rules in io.helidon.metrics.serviceapi
Methods in io.helidon.metrics.serviceapi with parameters of type Routing.RulesModifier and TypeMethodDescriptionvoidMetricsSupport.configureEndpoint(Routing.Rules defaultRoutingRules, Routing.Rules serviceEndpointRoutingRules) Prepares the endpoint which the service exposes.voidMetricsSupport.configureVendorMetrics(String routingName, Routing.Rules routingRules) Sets up vendor metrics routing using the specified routing name and routing builder.voidMinimalMetricsSupport.configureVendorMetrics(String routingName, Routing.Rules routingRules) static voidMinimalMetricsSupport.createEndpointForDisabledMetrics(String endpointContext, Routing.Rules serviceEndpointRoutingRules) Adds routing rules so metrics-related requests go to the "not available" endpoint.protected voidMinimalMetricsSupport.postConfigureEndpoint(Routing.Rules defaultRules, Routing.Rules serviceEndpointRoutingRules) voidMetricsSupport.prepareMetricsEndpoints(String endpointContext, Routing.Rules serviceEndpointRoutingRules) Prepares the family of/metricsendpoints.voidMinimalMetricsSupport.prepareMetricsEndpoints(String endpointContext, Routing.Rules serviceEndpointRoutingRules) voidMetricsSupport.update(Routing.Rules rules) voidMinimalMetricsSupport.update(Routing.Rules rules) -
Uses of Routing.Rules in io.helidon.openapi
Methods in io.helidon.openapi with parameters of type Routing.RulesModifier and TypeMethodDescriptionvoidOpenAPISupport.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 -
Uses of Routing.Rules in io.helidon.security.providers.oidc
Methods in io.helidon.security.providers.oidc with parameters of type Routing.Rules -
Uses of Routing.Rules in io.helidon.servicecommon.rest
Methods in io.helidon.servicecommon.rest with parameters of type Routing.RulesModifier and TypeMethodDescriptionfinal voidHelidonRestServiceSupport.configureEndpoint(Routing.Rules defaultRules, Routing.Rules serviceEndpointRoutingRules) Configures service endpoint on the provided routing rules.voidRestServiceSupport.configureEndpoint(Routing.Rules defaultRules, Routing.Rules serviceEndpointRoutingRules) Configures service endpoint on the provided routing rules.protected abstract voidHelidonRestServiceSupport.postConfigureEndpoint(Routing.Rules defaultRules, Routing.Rules serviceEndpointRoutingRules) Concrete implementations override this method to perform any service-specific routing set-up. -
Uses of Routing.Rules in io.helidon.webserver
Classes in io.helidon.webserver that implement Routing.RulesMethods in io.helidon.webserver that return Routing.RulesModifier and TypeMethodDescriptionRoutes all requests to provided handler(s).Routing.Rules.any(PathMatcher pathMatcher, Handler... requestHandlers) Routes all requests with corresponding path to provided handler(s).Routes all requests with corresponding path to provided handler(s).Routing.Rules.anyOf(Iterable<Http.RequestMethod> methods, Handler... requestHandlers) Routes requests any specified method to provided handler(s).Routing.Rules.anyOf(Iterable<Http.RequestMethod> methods, PathMatcher pathMatcher, Handler... requestHandlers) Routes requests with any specified method and corresponding path to provided handler(s).Routing.Rules.anyOf(Iterable<Http.RequestMethod> methods, String pathPattern, Handler... requestHandlers) Routes requests with any specified method and corresponding path to provided handler(s).Routes all DELETE requests to provided handler(s).Routing.Rules.delete(PathMatcher pathMatcher, Handler... requestHandlers) Routes DELETE requests with corresponding path to provided handler(s).Routes DELETE requests with corresponding path to provided handler(s).Routes all GET requests to provided handler(s).Routing.Rules.get(PathMatcher pathMatcher, Handler... requestHandlers) Routes GET requests with corresponding path to provided handler(s).Routes GET requests with corresponding path to provided handler(s).Routes all HEAD requests to provided handler(s).Routing.Rules.head(PathMatcher pathMatcher, Handler... requestHandlers) Routes HEAD requests with corresponding path to provided handler(s).Routes HEAD requests with corresponding path to provided handler(s).Routing.Rules.onNewWebServer(Consumer<WebServer> webServerConsumer) Registers callback on created newWebServerinstance with this routing.Routes all OPTIONS requests to provided handler(s).Routing.Rules.options(PathMatcher pathMatcher, Handler... requestHandlers) Routes OPTIONS requests with corresponding path to provided handler(s).Routes OPTIONS requests with corresponding path to provided handler(s).Routes all RFC 5789 PATCH requests to provided handler(s).Routing.Rules.patch(PathMatcher pathMatcher, Handler... requestHandlers) Routes RFC 5789 PATCH requests with corresponding path to provided handler(s).Routes RFC 5789 PATCH requests with corresponding path to provided handler(s).Routes all POST requests to provided handler(s).Routing.Rules.post(PathMatcher pathMatcher, Handler... requestHandlers) Routes POST requests with corresponding path to provided handler(s).Routes POST requests with corresponding path to provided handler(s).Routes all PUT requests to provided handler(s).Routing.Rules.put(PathMatcher pathMatcher, Handler... requestHandlers) Routes PUT requests with corresponding path to provided handler(s).Routes PUT requests with corresponding path to provided handler(s).Registers builder consumer.Routing.Rules.register(WebTracingConfig webTracingConfig) Configuration of tracing for this routing.Registers builder consumer.Registers builder consumer.Registers builder consumer.Add a route.Routes all TRACE requests to provided handler(s).Routing.Rules.trace(PathMatcher pathMatcher, Handler... requestHandlers) Routes TRACE requests with corresponding path to provided handler(s).Routes TRACE requests with corresponding path to provided handler(s).Methods in io.helidon.webserver with parameters of type Routing.RulesModifier and TypeMethodDescriptionvoidJsonService.update(Routing.Rules routingRules) Registers this handler for any HTTP method.voidService.update(Routing.Rules rules) UpdatesRouting.Ruleswithhandlersrepresenting this service. -
Uses of Routing.Rules in io.helidon.webserver.accesslog
Methods in io.helidon.webserver.accesslog with parameters of type Routing.Rules -
Uses of Routing.Rules in io.helidon.webserver.cors
Methods in io.helidon.webserver.cors with parameters of type Routing.Rules -
Uses of Routing.Rules in io.helidon.webserver.jersey
Methods in io.helidon.webserver.jersey with parameters of type Routing.Rules