Package | Description |
---|---|
ratpack.form |
Support for handling uploaded forms, including file uploads.
|
ratpack.http |
The HTTP protocol.
|
ratpack.util |
General purpose types and utilities.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Form
An uploaded form.
|
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,UploadedFile> |
Form.files()
Returns all of the uploaded files.
|
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,String> |
Headers.asMultiValueMap() |
MultiValueMap<String,String> |
Request.getQueryParams()
TBD.
|
Modifier and Type | Method and Description |
---|---|
HttpUrlBuilder |
HttpUrlBuilder.params(MultiValueMap<String,?> params)
Add some query params to the URL.
|
Modifier and Type | Method and Description |
---|---|
static <K,V> MultiValueMap<K,V> |
MultiValueMap.empty() |