public interface MultipartActionRequest extends ActionRequest(Code)
Interface which provides additional methods for dealing with multipart
content within a portlet request, allowing to access uploaded files.
Implementations also need to override the standard ActionRequest
methods for parameter access, making multipart parameters available.
Return the contents plus description of an uploaded file in this request,
or null if it does not exist.
Parameters: name - a String specifying the parameter name of the multipart file the uploaded content in the form of a MultipartFile object
Return a Map of the multipart files contained in this request.
a map containing the parameter names as keys, and theMultipartFile objects as values See Also:org.springframework.web.multipart.MultipartFile
Return an Iterator of String objects containing the parameter names of the
multipart files contained in this request. These are the field names of
the form (like with normal parameters), not the original file names.
the names of the files