| Package | Description |
|---|---|
| io.helidon.webserver |
Reactive web server API.
|
| Modifier and Type | Method and Description |
|---|---|
static PathMatcher |
PathMatcher.from(java.lang.String pathPattern)
Creates new instance from provided Web Server path pattern.
|
| Modifier and Type | Method and Description |
|---|---|
Routing.Builder |
Routing.Builder.any(PathMatcher pathMatcher,
Handler... requestHandlers) |
T |
Routing.Rules.any(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes all requests with corresponding path to provided handler(s).
|
Routing.Builder |
Routing.Builder.anyOf(java.lang.Iterable<Http.RequestMethod> methods,
PathMatcher pathMatcher,
Handler... requestHandlers) |
T |
Routing.Rules.anyOf(java.lang.Iterable<Http.RequestMethod> methods,
PathMatcher pathMatcher,
Handler... requestHandlers)
Routes requests with any specified method and corresponding path to provided handler(s).
|
Routing.Builder |
Routing.Builder.delete(PathMatcher pathMatcher,
Handler... requestHandlers) |
T |
Routing.Rules.delete(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes DELETE requests with corresponding path to provided handler(s).
|
Routing.Builder |
Routing.Builder.get(PathMatcher pathMatcher,
Handler... requestHandlers) |
T |
Routing.Rules.get(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes GET requests with corresponding path to provided handler(s).
|
Routing.Builder |
Routing.Builder.head(PathMatcher pathMatcher,
Handler... requestHandlers) |
T |
Routing.Rules.head(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes HEAD requests with corresponding path to provided handler(s).
|
Routing.Builder |
Routing.Builder.options(PathMatcher pathMatcher,
Handler... requestHandlers) |
T |
Routing.Rules.options(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes OPTIONS requests with corresponding path to provided handler(s).
|
Routing.Builder |
Routing.Builder.post(PathMatcher pathMatcher,
Handler... requestHandlers) |
T |
Routing.Rules.post(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes POST requests with corresponding path to provided handler(s).
|
Routing.Builder |
Routing.Builder.put(PathMatcher pathMatcher,
Handler... requestHandlers) |
T |
Routing.Rules.put(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes PUT requests with corresponding path to provided handler(s).
|
Routing.Builder |
Routing.Builder.trace(PathMatcher pathMatcher,
Handler... requestHandlers) |
T |
Routing.Rules.trace(PathMatcher pathMatcher,
Handler... requestHandlers)
Routes TRACE requests with corresponding path to provided handler(s).
|
Copyright © 2018, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.