Apache Struts API Documentation: Uses of Interface org.apache.struts.upload.MultipartRequestHandler

Apache Struts API


Uses of Interface
org.apache.struts.upload.MultipartRequestHandler

Packages that use MultipartRequestHandler
org.apache.struts.action The action package is the core of the struts framework, providing the "Controller" aspect of a MVC model. 
org.apache.struts.upload The upload package facilities to upload files using multi-part requests. 
org.apache.struts.util The Utilities package provides a variety of families of classes, to solve problems that are commonly encountered in building web applications. 
 

Uses of MultipartRequestHandler in org.apache.struts.action
 

Fields in org.apache.struts.action declared as MultipartRequestHandler
protected  MultipartRequestHandler ActionForm.multipartRequestHandler
          The MultipartRequestHandler for this form, can be null.
 

Methods in org.apache.struts.action that return MultipartRequestHandler
 MultipartRequestHandler ActionForm.getMultipartRequestHandler()
          Return the MultipartRequestHandler for this form The reasoning behind this is to give form bean developers control over the lifecycle of their multipart requests through the use of the finish and/or rollback methods of MultipartRequestHandler.
 

Methods in org.apache.struts.action with parameters of type MultipartRequestHandler
 void ActionForm.setMultipartRequestHandler(MultipartRequestHandler multipartRequestHandler)
          Set the Handler provides to use in dealing with file uploads.
 void ActionServletWrapper.setServletFor(MultipartRequestHandler object)
          Set servlet to a MultipartRequestHandler.
 

Uses of MultipartRequestHandler in org.apache.struts.upload
 

Classes in org.apache.struts.upload that implement MultipartRequestHandler
 class CommonsMultipartRequestHandler
          This class implements the MultipartRequestHandler interface by providing a wrapper around the Jakarta Commons FileUpload library.
 class DiskMultipartRequestHandler
          Deprecated. Use the Commons FileUpload based multipart handler instead. This class will be removed after Struts 1.2.
 

Uses of MultipartRequestHandler in org.apache.struts.util
 

Methods in org.apache.struts.util that return MultipartRequestHandler
private static MultipartRequestHandler RequestUtils.getMultipartHandler(javax.servlet.http.HttpServletRequest request)
          Try to locate a multipart request handler for this request.
 

Methods in org.apache.struts.util with parameters of type MultipartRequestHandler
private static java.util.Map RequestUtils.getAllParametersForMultipartRequest(javax.servlet.http.HttpServletRequest request, MultipartRequestHandler multipartHandler)
          Create a Map containing all of the parameters supplied for a multipart request, keyed by parameter name.
 



Copyright © 2000-2005 - The Apache Software Foundation