public interface Request extends Head, Body
An object implementing this interface can be "parsed" using one
of the decorators available in org.takes.rq
package. For example,
in order to fetch a query parameter you can use
RqHref
:
final Iterable<String> params = new RqHref(request).href().param("name");
All implementations of this interface must be immutable and thread-safe.
Response
,
Take
,
RqRegex
,
RqHref
,
Composable Decorators vs. Imperative Utility MethodsCopyright © 2015–2019 Take. All rights reserved.