Interface | Description |
---|---|
IMultipartDecoder |
Defines how a multipart HTTP request can be broken into individual elements (including file
uploads).
|
MultipartDecoder |
Responsible for detecting and processing file upload requests, using Jakarta
Commons FileUpload.
|
ServletMultipartDecoder |
Class | Description |
---|---|
AbstractMultipartDecoder | |
MultipartDecoderFilter |
Checks to see if the request is a file upload and, if so, uses the
MultipartDecoder to obtain form parameters. |
MultipartDecoderImpl |
Implementation of
MultipartDecoder that is based on Jakarta FileUpload . |
MultipartMessages | |
UploadFormParametersWrapper |
HttpServletRequest wrapper that provides access to the form
field values uploaded in a multipart request. |
UploadPart |
Portion of a multi-part request representing an uploaded file.
|
ValuePart |
A portion of a multipart request that stores a value, or values, for a parameter.
|