Java org.springframework.web.multipart MultipartHttpServletRequest fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.multipart MultipartHttpServletRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.multipart MultipartHttpServletRequest.

The text is from its open source code.

Implementation

org.springframework.web.multipart.MultipartHttpServletRequest has the following implementations.
Click this link to see all its implementation.

Method

StringgetContextPath()
Returns the portion of the request URI that indicates the context of the request.
MultipartFilegetFile(String name)
Return the contents plus description of an uploaded file in this request, or null if it does not exist.
MapgetFileMap()
Return a java.util.Map of the multipart files contained in this request.
IteratorgetFileNames()
Return an java.util.Iterator of String objects containing the parameter names of the multipart files contained in this request.
ListgetFiles(String name)
Return the contents plus description of uploaded files in this request, or an empty list if it does not exist.
StringgetHeader(String name)
Returns the value of the specified request header as a String.
EnumerationgetHeaderNames()
Returns an enumeration of all the header names this request contains.
StringgetMethod()
Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT.
MultiValueMapgetMultiFileMap()
Return a MultiValueMap of the multipart files contained in this request.
StringgetParameter(String name)
Returns the value of a request parameter as a String, or null if the parameter does not exist.
MapgetParameterMap()
Returns a java.util.Map of the parameters of this request.
EnumerationgetParameterNames()
Returns an Enumeration of String objects containing the names of the parameters contained in this request.
String[]getParameterValues(String name)
Returns an array of String objects containing all of the values the given request parameter has, or null if the parameter does not exist.
CollectiongetParts()
Gets all the Part components of this request, provided that it is of type multipart/form-data.
StringgetRemoteAddr()
Returns the Internet Protocol (IP) address of the client or last proxy that sent the request.
StringgetRequestURI()
Returns the part of this request's URL from the protocol name up to the query string in the first line of the HTTP request.
StringBuffergetRequestURL()
Reconstructs the URL the client used to make the request.
HttpSessiongetSession()
Returns the current session associated with this request, or if the request does not have a session, creates one.
voidsetAttribute(String name, Object o)
Stores an attribute in this request.