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