org.springframework.web.multipart.cos
Class CosMultipartHttpServletRequest
java.lang.Object
   javax.servlet.ServletRequestWrapper
javax.servlet.ServletRequestWrapper
       javax.servlet.http.HttpServletRequestWrapper
javax.servlet.http.HttpServletRequestWrapper
           org.springframework.web.multipart.support.AbstractMultipartHttpServletRequest
org.springframework.web.multipart.support.AbstractMultipartHttpServletRequest
               org.springframework.web.multipart.cos.CosMultipartHttpServletRequest
org.springframework.web.multipart.cos.CosMultipartHttpServletRequest
- All Implemented Interfaces: 
- HttpServletRequest, ServletRequest, MultipartHttpServletRequest
- public class CosMultipartHttpServletRequest 
- extends AbstractMultipartHttpServletRequest
MultipartHttpServletRequest implementation for Jason Hunter's COS.
 Wraps a COS MultipartRequest with Spring MultipartFile instances.
 
Not intended for direct application usage. Application code can cast
 to this implementation to access the underlying COS MultipartRequest,
 if it ever needs to.
- Since:
- 06.10.2003
- Author:
- Juergen Hoeller
- See Also:
- CosMultipartResolver,- MultipartRequest
 
 
 
 
 
| Methods inherited from class javax.servlet.http.HttpServletRequestWrapper | 
| getAuthType, getContextPath, getCookies, getDateHeader, getHeader, getHeaderNames, getHeaders, getIntHeader, getMethod, getPathInfo, getPathTranslated, getQueryString, getRemoteUser, getRequestedSessionId, getRequestURI, getRequestURL, getServletPath, getSession, getSession, getUserPrincipal, isRequestedSessionIdFromCookie, isRequestedSessionIdFromUrl, isRequestedSessionIdFromURL, isRequestedSessionIdValid, isUserInRole | 
 
| Methods inherited from class javax.servlet.ServletRequestWrapper | 
| getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentType, getInputStream, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequest, getRequestDispatcher, getScheme, getServerName, getServerPort, isSecure, removeAttribute, setAttribute, setCharacterEncoding, setRequest | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
| Methods inherited from interface javax.servlet.http.HttpServletRequest | 
| getAuthType, getContextPath, getCookies, getDateHeader, getHeader, getHeaderNames, getHeaders, getIntHeader, getMethod, getPathInfo, getPathTranslated, getQueryString, getRemoteUser, getRequestedSessionId, getRequestURI, getRequestURL, getServletPath, getSession, getSession, getUserPrincipal, isRequestedSessionIdFromCookie, isRequestedSessionIdFromUrl, isRequestedSessionIdFromURL, isRequestedSessionIdValid, isUserInRole | 
 
| Methods inherited from interface javax.servlet.ServletRequest | 
| getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentType, getInputStream, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequestDispatcher, getScheme, getServerName, getServerPort, isSecure, removeAttribute, setAttribute, setCharacterEncoding | 
 
logger
protected static final Log logger
CosMultipartHttpServletRequest
protected CosMultipartHttpServletRequest(HttpServletRequest request,
                                         com.oreilly.servlet.MultipartRequest multipartRequest)
- Wrap the given HttpServletRequest in a MultipartHttpServletRequest.
 
- Parameters:
- request- the servlet request to wrap
- multipartRequest- the COS multipart request to wrap
 
getMultipartRequest
public com.oreilly.servlet.MultipartRequest getMultipartRequest()
- Return the underlying com.oreilly.servlet.MultipartRequestinstance. There is hardly any need to access this.
 
- 
 
getParameterNames
public Enumeration getParameterNames()
- 
- Specified by:
- getParameterNamesin interface- ServletRequest
- Overrides:
- getParameterNamesin class- ServletRequestWrapper
 
- 
 
getParameter
public String getParameter(String name)
- 
- Specified by:
- getParameterin interface- ServletRequest
- Overrides:
- getParameterin class- ServletRequestWrapper
 
- 
 
getParameterValues
public String[] getParameterValues(String name)
- 
- Specified by:
- getParameterValuesin interface- ServletRequest
- Overrides:
- getParameterValuesin class- ServletRequestWrapper
 
- 
 
getParameterMap
public Map getParameterMap()
- 
- Specified by:
- getParameterMapin interface- ServletRequest
- Overrides:
- getParameterMapin class- ServletRequestWrapper
 
- 
 
Copyright (c) 2002-2007 The Spring Framework Project.