public class RequestPartServletServerHttpRequest extends ServletServerHttpRequest
ServerHttpRequest implementation that accesses one part of a multipart
 request. If using MultipartResolver configuration the part is accessed
 through a MultipartFile. Or if using Servlet 3.0 multipart processing
 the part is accessed through ServletRequest.getPart.FORM_CHARSET, FORM_CONTENT_TYPE| Constructor and Description | 
|---|
| RequestPartServletServerHttpRequest(HttpServletRequest request,
                                   String partName)Create a new instance. | 
| Modifier and Type | Method and Description | 
|---|---|
| InputStream | getBody()Return the body of the message as an input stream. | 
| HttpHeaders | getHeaders()Return the headers of this message. | 
getAsyncRequestControl, getLocalAddress, getMethod, getPrincipal, getRemoteAddress, getServletRequest, getURIpublic RequestPartServletServerHttpRequest(HttpServletRequest request, String partName) throws MissingServletRequestPartException
request - the current requestpartName - the name of the part to adapt to the ServerHttpRequest contractMissingServletRequestPartException - if the request part cannot be foundIllegalArgumentException - if MultipartHttpServletRequest cannot be initializedpublic HttpHeaders getHeaders()
HttpMessagegetHeaders in interface HttpMessagegetHeaders in class ServletServerHttpRequestpublic InputStream getBody() throws IOException
HttpInputMessagegetBody in interface HttpInputMessagegetBody in class ServletServerHttpRequestIOException - in case of I/O Errors