| javax.servlet.http.HttpServletRequestWrapper org.gomba.CustomHttpServletRequestWrapper
CustomHttpServletRequestWrapper | public class CustomHttpServletRequestWrapper extends HttpServletRequestWrapper (Code) | | Adds multipart form handling capabilities to an HTTPServletRequest using
Jakarta Commons FileUpload.
author: Flavio Tordini version: $Id: CustomHttpServletRequestWrapper.java,v 1.1 2004/09/28 15:58:22 flaviotordini Exp $ |
CustomHttpServletRequestWrapper | public CustomHttpServletRequestWrapper(HttpServletRequest request, int multipartSizeThreshold, int multipartMaxSize, String multipartRepositoryPath)(Code) | | Constructor.
|
getMultipartItems | public List getMultipartItems() throws FileUploadException(Code) | | Get a List of multipart items. Use the FileUpload API to retrieve values
from the items. FileItem has getter methods, so it's a
snap to use it in the JSP EL.
A list of org.apache.commons.fileupload.FileItem throws: FileUploadException - |
isMultipart | public boolean isMultipart()(Code) | | true if the request is of type'multipart/form-data'. |
|
|