The Spring Framework

Uses of Interface
org.springframework.web.multipart.MultipartHttpServletRequest

Packages that use MultipartHttpServletRequest
org.springframework.mock.web A comprehensive set of Servlet API mock objects, targeted at usage with Spring's web MVC framework. 
org.springframework.web.multipart Multipart resolution framework for handling file uploads. 
org.springframework.web.multipart.commons MultipartResolver implementation for Jakarta Commons FileUpload
org.springframework.web.multipart.support Support classes for the multipart resolution framework. 
 

Uses of MultipartHttpServletRequest in org.springframework.mock.web
 

Classes in org.springframework.mock.web that implement MultipartHttpServletRequest
 class MockMultipartHttpServletRequest
          Mock implementation of the MultipartHttpServletRequest interface.
 

Uses of MultipartHttpServletRequest in org.springframework.web.multipart
 

Methods in org.springframework.web.multipart that return MultipartHttpServletRequest
 MultipartHttpServletRequest MultipartResolver.resolveMultipart(HttpServletRequest request)
          Parse the given HTTP request into multipart files and parameters, and wrap the request inside a MultipartHttpServletRequest object that provides access to file descriptors and makes contained parameters accessible via the standard ServletRequest methods.
 

Methods in org.springframework.web.multipart with parameters of type MultipartHttpServletRequest
 void MultipartResolver.cleanupMultipart(MultipartHttpServletRequest request)
          Cleanup any resources used for the multipart handling, like a storage for the uploaded files.
 

Uses of MultipartHttpServletRequest in org.springframework.web.multipart.commons
 

Methods in org.springframework.web.multipart.commons that return MultipartHttpServletRequest
 MultipartHttpServletRequest CommonsMultipartResolver.resolveMultipart(HttpServletRequest request)
           
 

Methods in org.springframework.web.multipart.commons with parameters of type MultipartHttpServletRequest
 void CommonsMultipartResolver.cleanupMultipart(MultipartHttpServletRequest request)
           
 

Uses of MultipartHttpServletRequest in org.springframework.web.multipart.support
 

Classes in org.springframework.web.multipart.support that implement MultipartHttpServletRequest
 class AbstractMultipartHttpServletRequest
          Abstract base implementation of the MultipartHttpServletRequest interface.
 class DefaultMultipartHttpServletRequest
          Default implementation of the MultipartHttpServletRequest interface.
 


The Spring Framework

Copyright © 2002-2008 The Spring Framework.