public class DefaultMultipartHttpServletRequest extends AbstractMultipartHttpServletRequest
MultipartHttpServletRequest
 interface. Provides management of pre-generated parameter values.
 Used by CommonsMultipartResolver.
MultipartResolverBASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH| Constructor and Description | 
|---|
| DefaultMultipartHttpServletRequest(HttpServletRequest request)Wrap the given HttpServletRequest in a MultipartHttpServletRequest. | 
| DefaultMultipartHttpServletRequest(HttpServletRequest request,
                                  MultiValueMap<String,MultipartFile> mpFiles,
                                  Map<String,String[]> mpParams,
                                  Map<String,String> mpParamContentTypes)Wrap the given HttpServletRequest in a MultipartHttpServletRequest. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getMultipartContentType(String paramOrFileName)Determine the content type of the specified request part. | 
| HttpHeaders | getMultipartHeaders(String paramOrFileName)Return the headers associated with the specified part of the multipart request. | 
| protected Map<String,String> | getMultipartParameterContentTypes()Obtain the multipart parameter content type Map for retrieval,
 lazily initializing it if necessary. | 
| protected Map<String,String[]> | getMultipartParameters()Obtain the multipart parameter Map for retrieval,
 lazily initializing it if necessary. | 
| String | getParameter(String name)The default behavior of this method is to return
 getParameter(String name) on the wrapped request object. | 
| Map<String,String[]> | getParameterMap()The default behavior of this method is to return getParameterMap()
 on the wrapped request object. | 
| Enumeration<String> | getParameterNames()The default behavior of this method is to return getParameterNames()
 on the wrapped request object. | 
| String[] | getParameterValues(String name)The default behavior of this method is to return
 getParameterValues(String name) on the wrapped request object. | 
| protected void | setMultipartParameterContentTypes(Map<String,String> multipartParameterContentTypes)Set a Map with parameter names as keys and content type Strings as values. | 
| protected void | setMultipartParameters(Map<String,String[]> multipartParameters)Set a Map with parameter names as keys and String array objects as values. | 
getFile, getFileMap, getFileNames, getFiles, getMultiFileMap, getMultipartFiles, getRequest, getRequestHeaders, getRequestMethod, initializeMultipart, isResolved, setMultipartFilesauthenticate, changeSessionId, getAuthType, getContextPath, getCookies, getDateHeader, getHeader, getHeaderNames, getHeaders, getHttpServletMapping, getIntHeader, getMethod, getPart, getParts, getPathInfo, getPathTranslated, getQueryString, getRemoteUser, getRequestedSessionId, getRequestURI, getRequestURL, getServletPath, getSession, getSession, getTrailerFields, getUserPrincipal, isRequestedSessionIdFromCookie, isRequestedSessionIdFromUrl, isRequestedSessionIdFromURL, isRequestedSessionIdValid, isTrailerFieldsReady, isUserInRole, login, logout, newPushBuilder, upgradegetAsyncContext, getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentLengthLong, getContentType, getDispatcherType, getInputStream, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequestDispatcher, getScheme, getServerName, getServerPort, getServletContext, isAsyncStarted, isAsyncSupported, isSecure, isWrapperFor, isWrapperFor, removeAttribute, setAttribute, setCharacterEncoding, setRequest, startAsync, startAsyncclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitauthenticate, changeSessionId, getAuthType, getContextPath, getCookies, getDateHeader, getHeader, getHeaderNames, getHeaders, getHttpServletMapping, getIntHeader, getMethod, getPart, getParts, getPathInfo, getPathTranslated, getQueryString, getRemoteUser, getRequestedSessionId, getRequestURI, getRequestURL, getServletPath, getSession, getSession, getTrailerFields, getUserPrincipal, isRequestedSessionIdFromCookie, isRequestedSessionIdFromUrl, isRequestedSessionIdFromURL, isRequestedSessionIdValid, isTrailerFieldsReady, isUserInRole, login, logout, newPushBuilder, upgradegetAsyncContext, getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentLengthLong, getContentType, getDispatcherType, getInputStream, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequestDispatcher, getScheme, getServerName, getServerPort, getServletContext, isAsyncStarted, isAsyncSupported, isSecure, removeAttribute, setAttribute, setCharacterEncoding, startAsync, startAsyncpublic DefaultMultipartHttpServletRequest(HttpServletRequest request, MultiValueMap<String,MultipartFile> mpFiles, Map<String,String[]> mpParams, Map<String,String> mpParamContentTypes)
request - the servlet request to wrapmpFiles - a map of the multipart filesmpParams - a map of the parameters to expose,
 with Strings as keys and String arrays as valuespublic DefaultMultipartHttpServletRequest(HttpServletRequest request)
request - the servlet request to wrap@Nullable public String getParameter(String name)
javax.servlet.ServletRequestWrappergetParameter in interface ServletRequestgetParameter in class ServletRequestWrappername - a String specifying the name of the parameterString representing the single value of
 the parameterServletRequest.getParameterValues(java.lang.String)public String[] getParameterValues(String name)
javax.servlet.ServletRequestWrappergetParameterValues in interface ServletRequestgetParameterValues in class ServletRequestWrappername - a String containing the name of 
 the parameter whose value is requestedString objects 
 containing the parameter's valuesServletRequest.getParameter(java.lang.String)public Enumeration<String> getParameterNames()
javax.servlet.ServletRequestWrappergetParameterNames in interface ServletRequestgetParameterNames in class ServletRequestWrapperEnumeration of String
 objects, each String containing the name of
 a request parameter; or an empty Enumeration
 if the request has no parameterspublic Map<String,String[]> getParameterMap()
javax.servlet.ServletRequestWrappergetParameterMap in interface ServletRequestgetParameterMap in class ServletRequestWrapperpublic String getMultipartContentType(String paramOrFileName)
MultipartRequestparamOrFileName - the name of the partnull if not definedpublic HttpHeaders getMultipartHeaders(String paramOrFileName)
MultipartHttpServletRequestIf the underlying implementation supports access to headers, then all headers are returned. Otherwise, the returned headers will include a 'Content-Type' header at the very least.
protected final void setMultipartParameters(Map<String,String[]> multipartParameters)
protected Map<String,String[]> getMultipartParameters()
protected final void setMultipartParameterContentTypes(Map<String,String> multipartParameterContentTypes)