| Package | Description |
|---|---|
| ratpack.form |
Support for handling uploaded forms, including file uploads.
|
| Modifier and Type | Method and Description |
|---|---|
UploadedFile |
Form.file(String name)
Return the first uploaded file with the given name.
|
| Modifier and Type | Method and Description |
|---|---|
MultiValueMap<String,UploadedFile> |
Form.files()
Returns all of the uploaded files.
|
List<UploadedFile> |
Form.files(String name)
Return all of the uploaded files with the given name.
|