org.opencms.staticexport
Class CmsStaticExportRequest

java.lang.Object
  extended byjavax.servlet.ServletRequestWrapper
      extended byjavax.servlet.http.HttpServletRequestWrapper
          extended byorg.opencms.staticexport.CmsStaticExportRequest
All Implemented Interfaces:
HttpServletRequest, ServletRequest

public class CmsStaticExportRequest
extends HttpServletRequestWrapper

Wrapper for static export requests, required for parameter based requests.

Since:
6.0.0
Version:
$Revision: 1.8 $
Author:
Alexander Kandzior

Field Summary
 
Fields inherited from interface javax.servlet.http.HttpServletRequest
BASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH
 
Constructor Summary
CmsStaticExportRequest(HttpServletRequest req, CmsStaticExportData data)
          Creates a new static export request wrapper.
 
Method Summary
 String getParameter(String name)
           
 Map getParameterMap()
           
 Enumeration getParameterNames()
           
 String[] getParameterValues(String name)
           
 
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, getLocale, getLocales, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, 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.ServletRequest
getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentType, getInputStream, getLocale, getLocales, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRequestDispatcher, getScheme, getServerName, getServerPort, isSecure, removeAttribute, setAttribute, setCharacterEncoding
 

Constructor Detail

CmsStaticExportRequest

public CmsStaticExportRequest(HttpServletRequest req,
                              CmsStaticExportData data)
Creates a new static export request wrapper.

Parameters:
req - the request to wrap
data - the data for the static export
Method Detail

getParameter

public String getParameter(String name)
See Also:
ServletRequest.getParameter(java.lang.String)

getParameterMap

public Map getParameterMap()
See Also:
ServletRequest.getParameterMap()

getParameterNames

public Enumeration getParameterNames()
See Also:
ServletRequest.getParameterNames()

getParameterValues

public String[] getParameterValues(String name)
See Also:
ServletRequest.getParameterValues(java.lang.String)