| Package | Description |
|---|---|
| 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.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.jersey |
| Modifier and Type | Method and Description |
|---|---|
void |
HealthSupport.update(Routing.Rules rules) |
| Modifier and Type | Method and Description |
|---|---|
void |
JacksonSupport.update(Routing.Rules routingRules) |
| Modifier and Type | Method and Description |
|---|---|
void |
JsonBindingSupport.update(Routing.Rules routingRules) |
| Modifier and Type | Method and Description |
|---|---|
void |
JsonSupport.update(Routing.Rules routingRules)
|
| Modifier and Type | Method and Description |
|---|---|
void |
MetricsSupport.update(Routing.Rules rules) |
| Modifier and Type | Method and Description |
|---|---|
void |
PrometheusSupport.update(Routing.Rules rules) |
| Modifier and Type | Method and Description |
|---|---|
void |
WebSecurity.update(Routing.Rules routing) |
| Modifier and Type | Method and Description |
|---|---|
void |
OidcSupport.update(Routing.Rules rules) |
| Modifier and Type | Class and Description |
|---|---|
static class |
Routing.Builder
A
Routing builder. |
| Modifier and Type | Method and Description |
|---|---|
Routing.Rules |
Routing.Rules.any(Handler... requestHandlers)
Routes all requests to provided handler(s).
|
Routing.Rules |
Routing.Rules.any(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes all requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.any(String pathPattern,
Handler... requestHandlers)
Routes all requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.anyOf(Iterable<Http.RequestMethod> methods,
Handler... requestHandlers)
Routes requests any specified method to provided handler(s).
|
Routing.Rules |
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 |
Routing.Rules.anyOf(Iterable<Http.RequestMethod> methods,
String pathPattern,
Handler... requestHandlers)
Routes requests with any specified method and corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.delete(Handler... requestHandlers)
Routes all DELETE requests to provided handler(s).
|
Routing.Rules |
Routing.Rules.delete(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes DELETE requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.delete(String pathPattern,
Handler... requestHandlers)
Routes DELETE requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.get(Handler... requestHandlers)
Routes all GET requests to provided handler(s).
|
Routing.Rules |
Routing.Rules.get(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes GET requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.get(String pathPattern,
Handler... requestHandlers)
Routes GET requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.head(Handler... requestHandlers)
Routes all HEAD requests to provided handler(s).
|
Routing.Rules |
Routing.Rules.head(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes HEAD requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.head(String pathPattern,
Handler... requestHandlers)
Routes HEAD requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.onNewWebServer(Consumer<WebServer> webServerConsumer)
Registers callback on created new
WebServer instance with this routing. |
Routing.Rules |
Routing.Rules.options(Handler... requestHandlers)
Routes all OPTIONS requests to provided handler(s).
|
Routing.Rules |
Routing.Rules.options(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes OPTIONS requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.options(String pathPattern,
Handler... requestHandlers)
Routes OPTIONS requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.post(Handler... requestHandlers)
Routes all POST requests to provided handler(s).
|
Routing.Rules |
Routing.Rules.post(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes POST requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.post(String pathPattern,
Handler... requestHandlers)
Routes POST requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.put(Handler... requestHandlers)
Routes all PUT requests to provided handler(s).
|
Routing.Rules |
Routing.Rules.put(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes PUT requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.put(String pathPattern,
Handler... requestHandlers)
Routes PUT requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.register(Service... services)
Registers builder consumer.
|
Routing.Rules |
Routing.Rules.register(String pathPattern,
Service... services)
Registers builder consumer.
|
Routing.Rules |
Routing.Rules.register(String pathPattern,
Supplier<? extends Service>... serviceBuilders)
Registers builder consumer.
|
Routing.Rules |
Routing.Rules.register(Supplier<? extends Service>... serviceBuilders)
Registers builder consumer.
|
Routing.Rules |
Routing.Rules.trace(Handler... requestHandlers)
Routes all TRACE requests to provided handler(s).
|
Routing.Rules |
Routing.Rules.trace(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes TRACE requests with corresponding path to provided handler(s).
|
Routing.Rules |
Routing.Rules.trace(String pathPattern,
Handler... requestHandlers)
Routes TRACE requests with corresponding path to provided handler(s).
|
| Modifier and Type | Method and Description |
|---|---|
void |
Service.update(Routing.Rules rules)
Updates
Routing.Rules with handlers representing this service. |
void |
StaticContentSupport.update(Routing.Rules routing) |
| Modifier and Type | Method and Description |
|---|---|
void |
JerseySupport.update(Routing.Rules routingRules) |
Copyright © 2018–2019 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.