java.lang.Object | +--javax.servlet.ServletRequestWrapper | +--javax.servlet.http.HttpServletRequestWrapper
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.
HttpServletRequest
HttpServletRequestWrapper(HttpServletRequest request)
java.lang.String
getAuthType()
java.lang.String
getContextPath()
Cookie[]
getCookies()
long
getDateHeader(java.lang.String name)
java.lang.String
getHeader(java.lang.String name)
java.util.Enumeration
getHeaderNames()
java.util.Enumeration
getHeaders(java.lang.String name)
int
getIntHeader(java.lang.String name)
java.lang.String
getMethod()
java.lang.String
getPathInfo()
java.lang.String
getPathTranslated()
java.lang.String
getQueryString()
java.lang.String
getRemoteUser()
java.lang.String
getRequestedSessionId()
java.lang.String
getRequestURI()
java.lang.StringBuffer
getRequestURL()
java.lang.String
getServletPath()
HttpSession
getSession()
HttpSession
getSession(boolean create)
java.security.Principal
getUserPrincipal()
boolean
isRequestedSessionIdFromCookie()
boolean
isRequestedSessionIdFromUrl()
boolean
isRequestedSessionIdFromURL()
boolean
isRequestedSessionIdValid()
boolean
isUserInRole(java.lang.String role)
getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentType, getInputStream, getLocale, getLocales, getParameter, getParameterMap, getParameterNames, getParameterValues, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRequest, getRequestDispatcher, getScheme, getServerName, getServerPort, isSecure, removeAttribute, setAttribute, setCharacterEncoding, setRequest
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentType, getInputStream, getLocale, getLocales, getParameter, getParameterMap, getParameterNames, getParameterValues, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRequestDispatcher, getScheme, getServerName, getServerPort, isSecure, removeAttribute, setAttribute, setCharacterEncoding
public HttpServletRequestWrapper(HttpServletRequest request)
java.lang.IllegalArgumentException
- if the request is nullpublic java.lang.String getAuthType()
getAuthType
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
null
if the request was
not authenticated.public Cookie[] getCookies()
getCookies
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
Cookies
included with this request, or null
if the request has no cookiespublic long getDateHeader(java.lang.String name)
getDateHeader
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
name
- a String
specifying the
name of the headerlong
value
representing the date specified
in the header expressed as
the number of milliseconds
since January 1, 1970 GMT,
or -1 if the named header
was not included with the
reqestjava.lang.IllegalArgumentException
- If the header value
can't be converted
to a datepublic java.lang.String getHeader(java.lang.String name)
getHeader
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
name
- a String
specifying the
header nameString
containing the
value of the requested
header, or null
if the request does not
have a header of that namepublic java.util.Enumeration getHeaders(java.lang.String name)
getHeaders
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
name
- a String
specifying the
header nameEnumeration
containing
the values of the requested header. If
the request does not have any headers of
that name return an empty
enumeration. If
the container does not allow access to
header information, return nullpublic java.util.Enumeration getHeaderNames()
getHeaderNames
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
null
public int getIntHeader(java.lang.String name)
getIntHeader
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
name
- a String
specifying the name
of a request headerjava.lang.NumberFormatException
- If the header value
can't be converted
to an int
public java.lang.String getMethod()
getMethod
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
String
specifying the name
of the method with which
this request was madepublic java.lang.String getPathInfo()
getPathInfo
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
String
, decoded by the
web container, specifying
extra path information that comes
after the servlet path but before
the query string in the request URL;
or null
if the URL does not have
any extra path informationpublic java.lang.String getPathTranslated()
getPathTranslated
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
String
specifying the
real path, or null
if
the URL does not have any extra path
informationpublic java.lang.String getContextPath()
getContextPath
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
String
specifying the
portion of the request URI that indicates the context
of the requestpublic java.lang.String getQueryString()
getQueryString
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
String
containing the query
string or null
if the URL
contains no query string. The value is not
decoded by the container.public java.lang.String getRemoteUser()
getRemoteUser
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
String
specifying the login
of the user making this request, or null
public boolean isUserInRole(java.lang.String role)
isUserInRole
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
role
- a String
specifying the name
of the roleboolean
indicating whether
the user making this request belongs to a given role;
false
if the user has not been
authenticatedpublic java.security.Principal getUserPrincipal()
getUserPrincipal
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
java.security.Principal
containing
the name of the user making this request;
null
if the user has not been
authenticatedpublic java.lang.String getRequestedSessionId()
getRequestedSessionId
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
String
specifying the session
ID, or null
if the request did
not specify a session IDHttpServletRequest.isRequestedSessionIdValid()
public java.lang.String getRequestURI()
getRequestURI
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
String
containing
the part of the URL from the
protocol name up to the query stringHttpUtils.getRequestURL(javax.servlet.http.HttpServletRequest)
public java.lang.StringBuffer getRequestURL()
getRequestURL
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
StringBuffer
object containing
the reconstructed URLpublic java.lang.String getServletPath()
getServletPath
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
String
containing
the name or path of the servlet being
called, as specified in the request URL,
decoded.public HttpSession getSession(boolean create)
getSession
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
true
- to create
a new session for this request if necessary;
false
to return null
if there's no current sessionHttpSession
associated
with this request or null
if
create
is false
and the request has no valid sessionHttpServletRequest.getSession()
public HttpSession getSession()
getSession
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
HttpSession
associated
with this requestHttpServletRequest.getSession(boolean)
public boolean isRequestedSessionIdValid()
isRequestedSessionIdValid
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
true
if this
request has an id for a valid session
in the current session context;
false
otherwiseHttpServletRequest.getRequestedSessionId()
,
HttpServletRequest.getSession(boolean)
,
HttpSessionContext
public boolean isRequestedSessionIdFromCookie()
isRequestedSessionIdFromCookie
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
true
if the session ID
came in as a
cookie; otherwise, false
HttpServletRequest.getSession(boolean)
public boolean isRequestedSessionIdFromURL()
isRequestedSessionIdFromURL
in interface HttpServletRequest
javax.servlet.http.HttpServletRequest
true
if the session ID
came in as part of a URL; otherwise,
false
HttpServletRequest.getSession(boolean)
public boolean isRequestedSessionIdFromUrl()
isRequestedSessionIdFromUrl
in interface HttpServletRequest