javax.servlet.http

Class HttpServletRequestWrapper

Implemented Interfaces:
HttpServletRequest, ServletRequest

public class HttpServletRequestWrapper
extends ServletRequestWrapper
implements HttpServletRequest

Provides a convenient implementation of the HttpServletRequest interface that can be subclassed by developers wishing to adapt the request to a Servlet. This class implements the Wrapper or Decorator pattern. Methods default to calling through to the wrapped request object.
Since:
v 2.3
See Also:
HttpServletRequest

Fields inherited from interface javax.servlet.http.HttpServletRequest

BASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH

Constructor Summary

HttpServletRequestWrapper(HttpServletRequest request)
Constructs a request object wrapping the given request.

Method Summary

String
getAuthType()
The default behavior of this method is to return getAuthType() on the wrapped request object.
String
getContextPath()
The default behavior of this method is to return getContextPath() on the wrapped request object.
Cookie[]
getCookies()
The default behavior of this method is to return getCookies() on the wrapped request object.
long
getDateHeader(String name)
The default behavior of this method is to return getDateHeader(String name) on the wrapped request object.
String
getHeader(String name)
The default behavior of this method is to return getHeader(String name) on the wrapped request object.
Enumeration
getHeaderNames()
The default behavior of this method is to return getHeaderNames() on the wrapped request object.
Enumeration
getHeaders(String name)
The default behavior of this method is to return getHeaders(String name) on the wrapped request object.
int
getIntHeader(String name)
The default behavior of this method is to return getIntHeader(String name) on the wrapped request object.
String
getMethod()
The default behavior of this method is to return getMethod() on the wrapped request object.
String
getPathInfo()
The default behavior of this method is to return getPathInfo() on the wrapped request object.
String
getPathTranslated()
The default behavior of this method is to return getPathTranslated() on the wrapped request object.
String
getQueryString()
The default behavior of this method is to return getQueryString() on the wrapped request object.
String
getRemoteUser()
The default behavior of this method is to return getRemoteUser() on the wrapped request object.
String
getRequestURI()
The default behavior of this method is to return getRequestURI() on the wrapped request object.
StringBuffer
getRequestURL()
The default behavior of this method is to return getRequestURL() on the wrapped request object.
String
getRequestedSessionId()
The default behavior of this method is to return getRequestedSessionId() on the wrapped request object.
String
getServletPath()
The default behavior of this method is to return getServletPath() on the wrapped request object.
HttpSession
getSession()
The default behavior of this method is to return getSession() on the wrapped request object.
HttpSession
getSession(boolean create)
The default behavior of this method is to return getSession(boolean create) on the wrapped request object.
java.security.Principal
getUserPrincipal()
The default behavior of this method is to return getUserPrincipal() on the wrapped request object.
boolean
isRequestedSessionIdFromCookie()
The default behavior of this method is to return isRequestedSessionIdFromCookie() on the wrapped request object.
boolean
isRequestedSessionIdFromURL()
The default behavior of this method is to return isRequestedSessionIdFromURL() on the wrapped request object.
boolean
isRequestedSessionIdFromUrl()
The default behavior of this method is to return isRequestedSessionIdFromUrl() on the wrapped request object.
boolean
isRequestedSessionIdValid()
The default behavior of this method is to return isRequestedSessionIdValid() on the wrapped request object.
boolean
isUserInRole(String role)
The default behavior of this method is to return isUserInRole(String role) on the wrapped request object.

Methods inherited from class javax.servlet.ServletRequestWrapper

getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentType, getInputStream, getLocalAddr, getLocalName, getLocalPort, getLocale, getLocales, getParameter, getParameterMap, getParameterNames, getParameterValues, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequest, getRequestDispatcher, getScheme, getServerName, getServerPort, isSecure, removeAttribute, setAttribute, setCharacterEncoding, setRequest

Constructor Details

HttpServletRequestWrapper

public HttpServletRequestWrapper(HttpServletRequest request)
Constructs a request object wrapping the given request.

Method Details

getAuthType

public String getAuthType()
The default behavior of this method is to return getAuthType() on the wrapped request object.
Specified by:
getAuthType in interface HttpServletRequest

getContextPath

public String getContextPath()
The default behavior of this method is to return getContextPath() on the wrapped request object.
Specified by:
getContextPath in interface HttpServletRequest

getCookies

public Cookie[] getCookies()
The default behavior of this method is to return getCookies() on the wrapped request object.
Specified by:
getCookies in interface HttpServletRequest

getDateHeader

public long getDateHeader(String name)
The default behavior of this method is to return getDateHeader(String name) on the wrapped request object.
Specified by:
getDateHeader in interface HttpServletRequest

getHeader

public String getHeader(String name)
The default behavior of this method is to return getHeader(String name) on the wrapped request object.
Specified by:
getHeader in interface HttpServletRequest

getHeaderNames

public Enumeration getHeaderNames()
The default behavior of this method is to return getHeaderNames() on the wrapped request object.
Specified by:
getHeaderNames in interface HttpServletRequest

getHeaders

public Enumeration getHeaders(String name)
The default behavior of this method is to return getHeaders(String name) on the wrapped request object.
Specified by:
getHeaders in interface HttpServletRequest

getIntHeader

public int getIntHeader(String name)
The default behavior of this method is to return getIntHeader(String name) on the wrapped request object.
Specified by:
getIntHeader in interface HttpServletRequest

getMethod

public String getMethod()
The default behavior of this method is to return getMethod() on the wrapped request object.
Specified by:
getMethod in interface HttpServletRequest

getPathInfo

public String getPathInfo()
The default behavior of this method is to return getPathInfo() on the wrapped request object.
Specified by:
getPathInfo in interface HttpServletRequest

getPathTranslated

public String getPathTranslated()
The default behavior of this method is to return getPathTranslated() on the wrapped request object.
Specified by:
getPathTranslated in interface HttpServletRequest

getQueryString

public String getQueryString()
The default behavior of this method is to return getQueryString() on the wrapped request object.
Specified by:
getQueryString in interface HttpServletRequest

getRemoteUser

public String getRemoteUser()
The default behavior of this method is to return getRemoteUser() on the wrapped request object.
Specified by:
getRemoteUser in interface HttpServletRequest

getRequestURI

public String getRequestURI()
The default behavior of this method is to return getRequestURI() on the wrapped request object.
Specified by:
getRequestURI in interface HttpServletRequest

getRequestURL

public StringBuffer getRequestURL()
The default behavior of this method is to return getRequestURL() on the wrapped request object.
Specified by:
getRequestURL in interface HttpServletRequest

getRequestedSessionId

public String getRequestedSessionId()
The default behavior of this method is to return getRequestedSessionId() on the wrapped request object.
Specified by:
getRequestedSessionId in interface HttpServletRequest

getServletPath

public String getServletPath()
The default behavior of this method is to return getServletPath() on the wrapped request object.
Specified by:
getServletPath in interface HttpServletRequest

getSession

public HttpSession getSession()
The default behavior of this method is to return getSession() on the wrapped request object.
Specified by:
getSession in interface HttpServletRequest

getSession

public HttpSession getSession(boolean create)
The default behavior of this method is to return getSession(boolean create) on the wrapped request object.
Specified by:
getSession in interface HttpServletRequest

getUserPrincipal

public java.security.Principal getUserPrincipal()
The default behavior of this method is to return getUserPrincipal() on the wrapped request object.
Specified by:
getUserPrincipal in interface HttpServletRequest

isRequestedSessionIdFromCookie

public boolean isRequestedSessionIdFromCookie()
The default behavior of this method is to return isRequestedSessionIdFromCookie() on the wrapped request object.
Specified by:
isRequestedSessionIdFromCookie in interface HttpServletRequest

isRequestedSessionIdFromURL

public boolean isRequestedSessionIdFromURL()
The default behavior of this method is to return isRequestedSessionIdFromURL() on the wrapped request object.
Specified by:
isRequestedSessionIdFromURL in interface HttpServletRequest

isRequestedSessionIdFromUrl

public boolean isRequestedSessionIdFromUrl()
The default behavior of this method is to return isRequestedSessionIdFromUrl() on the wrapped request object.
Specified by:
isRequestedSessionIdFromUrl in interface HttpServletRequest

isRequestedSessionIdValid

public boolean isRequestedSessionIdValid()
The default behavior of this method is to return isRequestedSessionIdValid() on the wrapped request object.
Specified by:
isRequestedSessionIdValid in interface HttpServletRequest

isUserInRole

public boolean isUserInRole(String role)
The default behavior of this method is to return isUserInRole(String role) on the wrapped request object.
Specified by:
isUserInRole in interface HttpServletRequest

Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.