| 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.
|
| 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.create(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 |
|---|---|
Http.RequestMethod |
BareRequest.method()
Gets an HTTP request method.
|
| Modifier and Type | Method and Description |
|---|---|
Routing.Builder |
Routing.Builder.anyOf(Iterable<Http.RequestMethod> methods,
Handler... requestHandlers) |
Routing.Builder |
Routing.Builder.anyOf(Iterable<Http.RequestMethod> methods,
PathMatcher pathMatcher,
Handler... requestHandlers) |
Routing.Builder |
Routing.Builder.anyOf(Iterable<Http.RequestMethod> methods,
String pathPattern,
Handler... requestHandlers) |
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).
|
Copyright © 2018, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.