- All Known Subinterfaces:
ServerRequest
,WebClientRequestBuilder.ClientRequest
,WebClientServiceRequest
public interface HttpRequest
Common attributes of an HTTP Request, that are used both in server requests and in client requests.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Represents requested normalised URI path. -
Method Summary
Modifier and TypeMethodDescriptionfragment()
Returns a decoded request URI fragment without leading hash '#' character.method()
Returns an HTTP request method.path()
Returns a path which was accepted by matcher in actual routing.query()
Returns an encoded query string without leading '?' character.Returns query parameters.uri()
Returns a Request-URI (or alternatively path) as defined in request line.version()
Returns an HTTP version from the request line.
-
Method Details
-
method
Http.RequestMethod method()Returns an HTTP request method. See alsoHTTP standard methods
utility class.- Returns:
- an HTTP method
- See Also:
-
version
Http.Version version()Returns an HTTP version from the request line.See
HTTP Version
enumeration for supported versions.If communication starts as a
HTTP/1.1
withh2c
upgrade, then it will be automatically upgraded and this method returnsHTTP/2.0
.- Returns:
- an HTTP version
-
uri
URI uri()Returns a Request-URI (or alternatively path) as defined in request line.- Returns:
- a request URI
-
query
String query()Returns an encoded query string without leading '?' character.- Returns:
- an encoded query string
-
queryParams
Parameters queryParams()Returns query parameters.- Returns:
- an parameters representing query parameters
-
path
HttpRequest.Path path()Returns a path which was accepted by matcher in actual routing. It is path without a context root of the routing.Use
HttpRequest.Path.absolute()
method to obtain absolute request URI path representation.Returned
HttpRequest.Path
also provide access to path template parameters. An absolute path then provides access to all (including) context parameters if any. In case of conflict between parameter names, most recent value is returned.- Returns:
- a path
-
fragment
String fragment()Returns a decoded request URI fragment without leading hash '#' character.- Returns:
- a decoded URI fragment
-