当前页面: 
在线文档首页 > 
Spring Framework 2.1.0 API 文档英文版
DefaultMultipartActionRequest (Spring Framework API 2.1) - Spring Framework 2.1.0 API 文档英文版
org.springframework.web.portlet.multipart
Class DefaultMultipartActionRequest
java.lang.Object
   org.springframework.web.portlet.util.PortletRequestWrapper
org.springframework.web.portlet.util.PortletRequestWrapper
       org.springframework.web.portlet.util.ActionRequestWrapper
org.springframework.web.portlet.util.ActionRequestWrapper
           org.springframework.web.portlet.multipart.DefaultMultipartActionRequest
org.springframework.web.portlet.multipart.DefaultMultipartActionRequest
- All Implemented Interfaces: 
- ActionRequest, PortletRequest, MultipartActionRequest
- public class DefaultMultipartActionRequest 
- extends ActionRequestWrapper- implements MultipartActionRequest
Default implementation of the MultipartActionRequest interface.
 Provides management of pre-generated parameter values.
- Since:
- 2.0
- Author:
- Juergen Hoeller
- See Also:
- PortletMultipartResolver
 
 
 
 
 
| Methods inherited from class org.springframework.web.portlet.util.PortletRequestWrapper | 
| getAttribute, getAttributeNames, getAuthType, getContextPath, getLocale, getLocales, getPortalContext, getPortletMode, getPortletSession, getPortletSession, getPreferences, getProperties, getProperty, getPropertyNames, getRemoteUser, getRequestedSessionId, getResponseContentType, getResponseContentTypes, getScheme, getServerName, getServerPort, getUserPrincipal, getWindowState, isPortletModeAllowed, isRequestedSessionIdValid, isSecure, isUserInRole, isWindowStateAllowed, removeAttribute, setAttribute | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
 
| Methods inherited from interface javax.portlet.PortletRequest | 
| getAttribute, getAttributeNames, getAuthType, getContextPath, getLocale, getLocales, getPortalContext, getPortletMode, getPortletSession, getPortletSession, getPreferences, getProperties, getProperty, getPropertyNames, getRemoteUser, getRequestedSessionId, getResponseContentType, getResponseContentTypes, getScheme, getServerName, getServerPort, getUserPrincipal, getWindowState, isPortletModeAllowed, isRequestedSessionIdValid, isSecure, isUserInRole, isWindowStateAllowed, removeAttribute, setAttribute | 
 
DefaultMultipartActionRequest
public DefaultMultipartActionRequest(ActionRequest request,
                                     Map multipartFiles,
                                     Map multipartParameters)
- Wrap the given Portlet ActionRequest in a MultipartActionRequest.
 
- Parameters:
- request- the request to wrap
- multipartFiles- a map of the multipart files
- multipartParameters- a map of the parameters to expose,
 with Strings as keys and String arrays as values
 
getFileNames
public Iterator getFileNames()
- Description copied from interface: MultipartActionRequest
- 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.
 
- 
- Specified by:
- getFileNamesin interface- MultipartActionRequest
 
- 
- Returns:
- the names of the files
 
getFile
public MultipartFile getFile(String name)
- Description copied from interface: MultipartActionRequest
- Return the contents plus description of an uploaded file in this request,
 or nullif it does not exist.
 
- 
- Specified by:
- getFilein interface- MultipartActionRequest
 
- 
- Parameters:
- name- a String specifying the parameter name of the multipart file
- Returns:
- the uploaded content in the form of a MultipartFile object
 
getFileMap
public Map getFileMap()
- Description copied from interface: MultipartActionRequest
- Return a Map of the multipart files contained in this request.
 
- 
- Specified by:
- getFileMapin interface- MultipartActionRequest
 
- 
- Returns:
- a map containing the parameter names as keys, and the
 MultipartFile objects as values
- See Also:
- MultipartFile
 
getParameterNames
public Enumeration getParameterNames()
- 
- Specified by:
- getParameterNamesin interface- PortletRequest
- Overrides:
- getParameterNamesin class- PortletRequestWrapper
 
- 
 
getParameter
public String getParameter(String name)
- 
- Specified by:
- getParameterin interface- PortletRequest
- Overrides:
- getParameterin class- PortletRequestWrapper
 
- 
 
getParameterValues
public String[] getParameterValues(String name)
- 
- Specified by:
- getParameterValuesin interface- PortletRequest
- Overrides:
- getParameterValuesin class- PortletRequestWrapper
 
- 
 
getParameterMap
public Map getParameterMap()
- 
- Specified by:
- getParameterMapin interface- PortletRequest
- Overrides:
- getParameterMapin class- PortletRequestWrapper
 
- 
 
Copyright © 2002-2007 The Spring Framework.