| Package | Description |
|---|---|
| io.helidon.common.http |
HTTP APIs and implementations usable by both server and client side of the HTTP story.
|
| io.helidon.webserver |
Reactive web server API.
|
| io.helidon.webserver.spi |
WebServer SPI.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
Http.Method
Enumeration of all standard HTTP
methods. |
| Modifier and Type | Method and Description |
|---|---|
static Http.RequestMethod |
Http.RequestMethod.from(java.lang.String name)
Create new HTTP request method instance from the provided name.
|
Http.RequestMethod |
HttpRequest.method()
Returns an HTTP request method.
|
| Modifier and Type | Method and Description |
|---|---|
Routing.Builder |
Routing.Builder.anyOf(java.lang.Iterable<Http.RequestMethod> methods,
Handler... requestHandlers) |
Routing.Builder |
Routing.Builder.anyOf(java.lang.Iterable<Http.RequestMethod> methods,
PathMatcher pathMatcher,
Handler... requestHandlers) |
Routing.Builder |
Routing.Builder.anyOf(java.lang.Iterable<Http.RequestMethod> methods,
java.lang.String pathPattern,
Handler... requestHandlers) |
T |
Routing.Rules.anyOf(java.lang.Iterable<Http.RequestMethod> methods,
Handler... requestHandlers)
Routes requests any specified method to provided handler(s).
|
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).
|
T |
Routing.Rules.anyOf(java.lang.Iterable<Http.RequestMethod> methods,
java.lang.String pathPattern,
Handler... requestHandlers)
Routes requests with any specified method and corresponding path to provided handler(s).
|
| Modifier and Type | Method and Description |
|---|---|
Http.RequestMethod |
BareRequest.getMethod()
Gets an HTTP request method.
|
Copyright © 2018, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.