Package jakarta.servlet.http
Class HttpServletRequestWrapper
- java.lang.Object
- 
- jakarta.servlet.ServletRequestWrapper
- 
- jakarta.servlet.http.HttpServletRequestWrapper
 
 
- 
- All 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:
- Servlet 2.3
- See Also:
- HttpServletRequest
 
- 
- 
Field Summary- 
Fields inherited from interface jakarta.servlet.http.HttpServletRequestBASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH
 
- 
 - 
Constructor SummaryConstructors Constructor Description HttpServletRequestWrapper(HttpServletRequest request)Constructs a request object wrapping the given request.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanauthenticate(HttpServletResponse response)The default behavior of this method is to call authenticate on the wrapped request object.StringchangeSessionId()The default behavior of this method is to return changeSessionId() on the wrapped request object.StringgetAuthType()The default behavior of this method is to return getAuthType() on the wrapped request object.StringgetContextPath()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.longgetDateHeader(String name)The default behavior of this method is to return getDateHeader(String name) on the wrapped request object.StringgetHeader(String name)The default behavior of this method is to return getHeader(String name) on the wrapped request object.Enumeration<String>getHeaderNames()The default behavior of this method is to return getHeaderNames() on the wrapped request object.Enumeration<String>getHeaders(String name)The default behavior of this method is to return getHeaders(String name) on the wrapped request object.HttpServletMappinggetHttpServletMapping()The default behavior of this method is to return getServletMapping() on the wrapped request object.intgetIntHeader(String name)The default behavior of this method is to return getIntHeader(String name) on the wrapped request object.StringgetMethod()The default behavior of this method is to return getMethod() on the wrapped request object.PartgetPart(String name)The default behavior of this method is to call getPart on the wrapped request object.Collection<Part>getParts()The default behavior of this method is to call getParts on the wrapped request object.StringgetPathInfo()The default behavior of this method is to return getPathInfo() on the wrapped request object.StringgetPathTranslated()The default behavior of this method is to return getPathTranslated() on the wrapped request object.StringgetQueryString()The default behavior of this method is to return getQueryString() on the wrapped request object.StringgetRemoteUser()The default behavior of this method is to return getRemoteUser() on the wrapped request object.StringgetRequestedSessionId()The default behavior of this method is to return getRequestedSessionId() on the wrapped request object.StringgetRequestURI()The default behavior of this method is to return getRequestURI() on the wrapped request object.StringBuffergetRequestURL()The default behavior of this method is to return getRequestURL() on the wrapped request object.StringgetServletPath()The default behavior of this method is to return getServletPath() on the wrapped request object.HttpSessiongetSession()The default behavior of this method is to return getSession() on the wrapped request object.HttpSessiongetSession(boolean create)The default behavior of this method is to return getSession(boolean create) on the wrapped request object.Map<String,String>getTrailerFields()The default behavior of this method is to call getTrailerFields on the wrapped request object.PrincipalgetUserPrincipal()The default behavior of this method is to return getUserPrincipal() on the wrapped request object.booleanisRequestedSessionIdFromCookie()The default behavior of this method is to return isRequestedSessionIdFromCookie() on the wrapped request object.booleanisRequestedSessionIdFromURL()The default behavior of this method is to return isRequestedSessionIdFromURL() on the wrapped request object.booleanisRequestedSessionIdValid()The default behavior of this method is to return isRequestedSessionIdValid() on the wrapped request object.booleanisTrailerFieldsReady()The default behavior of this method is to call isTrailerFieldsReady on the wrapped request object.booleanisUserInRole(String role)The default behavior of this method is to return isUserInRole(String role) on the wrapped request object.voidlogin(String username, String password)The default behavior of this method is to call login on the wrapped request object.voidlogout()The default behavior of this method is to call login on the wrapped request object.PushBuildernewPushBuilder()The default behavior of this method is to call newPushBuilder on the wrapped request object.<T extends HttpUpgradeHandler>
 Tupgrade(Class<T> handlerClass)Create an instance ofHttpUpgradeHandlerfor a given class and uses it for the http protocol upgrade processing.- 
Methods inherited from class jakarta.servlet.ServletRequestWrappergetAsyncContext, getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentLengthLong, getContentType, getDispatcherType, getInputStream, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getParameter, getParameterMap, getParameterNames, getParameterValues, getProtocol, getProtocolRequestId, getReader, getRemoteAddr, getRemoteHost, getRemotePort, getRequest, getRequestDispatcher, getRequestId, getScheme, getServerName, getServerPort, getServletConnection, getServletContext, isAsyncStarted, isAsyncSupported, isSecure, isWrapperFor, isWrapperFor, removeAttribute, setAttribute, setCharacterEncoding, setRequest, startAsync, startAsync
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface jakarta.servlet.ServletRequestgetAsyncContext, getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentLengthLong, getContentType, getDispatcherType, getInputStream, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getParameter, getParameterMap, getParameterNames, getParameterValues, getProtocol, getProtocolRequestId, getReader, getRemoteAddr, getRemoteHost, getRemotePort, getRequestDispatcher, getRequestId, getScheme, getServerName, getServerPort, getServletConnection, getServletContext, isAsyncStarted, isAsyncSupported, isSecure, removeAttribute, setAttribute, setCharacterEncoding, startAsync, startAsync
 
- 
 
- 
- 
- 
Constructor Detail- 
HttpServletRequestWrapperpublic HttpServletRequestWrapper(HttpServletRequest request) Constructs a request object wrapping the given request.- Parameters:
- request- the- HttpServletRequestto be wrapped.
- Throws:
- IllegalArgumentException- if the request is null
 
 
- 
 - 
Method Detail- 
getAuthTypepublic String getAuthType() The default behavior of this method is to return getAuthType() on the wrapped request object.- Specified by:
- getAuthTypein interface- HttpServletRequest
- Returns:
- one of the static members BASIC_AUTH, FORM_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH (suitable for == comparison)
 or the container-specific string indicating the authentication scheme, or nullif the request was not authenticated.
 
 - 
getCookiespublic Cookie[] getCookies() The default behavior of this method is to return getCookies() on the wrapped request object.- Specified by:
- getCookiesin interface- HttpServletRequest
- Returns:
- an array of all the Cookiesincluded with this request, ornullif the request has no cookies
 
 - 
getDateHeaderpublic long getDateHeader(String name) The default behavior of this method is to return getDateHeader(String name) on the wrapped request object.- Specified by:
- getDateHeaderin interface- HttpServletRequest
- Parameters:
- name- a- Stringspecifying the name of the header
- Returns:
- a longvalue 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 request
 
 - 
getHeaderpublic String getHeader(String name) The default behavior of this method is to return getHeader(String name) on the wrapped request object.- Specified by:
- getHeaderin interface- HttpServletRequest
- Parameters:
- name- a- Stringspecifying the header name
- Returns:
- a Stringcontaining the value of the requested header, ornullif the request does not have a header of that name
 
 - 
getHeaderspublic Enumeration<String> getHeaders(String name) The default behavior of this method is to return getHeaders(String name) on the wrapped request object.- Specified by:
- getHeadersin interface- HttpServletRequest
- Parameters:
- name- a- Stringspecifying the header name
- Returns:
- an Enumerationcontaining 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 null
 
 - 
getHeaderNamespublic Enumeration<String> getHeaderNames() The default behavior of this method is to return getHeaderNames() on the wrapped request object.- Specified by:
- getHeaderNamesin interface- HttpServletRequest
- Returns:
- an enumeration of all the header names sent with this request; if the request has no headers, an empty
 enumeration; if the servlet container does not allow servlets to use this method, null
 
 - 
getIntHeaderpublic int getIntHeader(String name) The default behavior of this method is to return getIntHeader(String name) on the wrapped request object.- Specified by:
- getIntHeaderin interface- HttpServletRequest
- Parameters:
- name- a- Stringspecifying the name of a request header
- Returns:
- an integer expressing the value of the request header or -1 if the request doesn't have a header of this name
 
 - 
getHttpServletMappingpublic HttpServletMapping getHttpServletMapping() The default behavior of this method is to return getServletMapping() on the wrapped request object.- Specified by:
- getHttpServletMappingin interface- HttpServletRequest
- Returns:
- An instance of HttpServletMappingdescribing the manner in which the current request was invoked.
- Since:
- Servlet 4.0
 
 - 
getMethodpublic String getMethod() The default behavior of this method is to return getMethod() on the wrapped request object.- Specified by:
- getMethodin interface- HttpServletRequest
- Returns:
- a Stringspecifying the name of the method with which this request was made
 
 - 
getPathInfopublic String getPathInfo() The default behavior of this method is to return getPathInfo() on the wrapped request object.- Specified by:
- getPathInfoin interface- HttpServletRequest
- Returns:
- a Stringspecifying extra path information that comes after the servlet path but before the query string in the request URL; ornullif the URL does not have any extra path information. The path will be canonicalized as per section 3.5 of the specification. This method will not return any encoded characters unless the container is configured specifically to allow them.
 
 - 
getPathTranslatedpublic String getPathTranslated() The default behavior of this method is to return getPathTranslated() on the wrapped request object.- Specified by:
- getPathTranslatedin interface- HttpServletRequest
- Returns:
- a Stringspecifying the real path, ornullif the URL does not have any extra path information
 
 - 
getContextPathpublic String getContextPath() The default behavior of this method is to return getContextPath() on the wrapped request object.- Specified by:
- getContextPathin interface- HttpServletRequest
- Returns:
- a Stringspecifying the portion of the request URI that indicates the context of the request. The path will be canonicalized as per section 3.5 of the specification. This method will not return any encoded characters unless the container is configured specifically to allow them.
- See Also:
- ServletContext.getContextPath()
 
 - 
getQueryStringpublic String getQueryString() The default behavior of this method is to return getQueryString() on the wrapped request object.- Specified by:
- getQueryStringin interface- HttpServletRequest
- Returns:
- a Stringcontaining the query string ornullif the URL contains no query string. The value is not decoded by the container.
 
 - 
getRemoteUserpublic String getRemoteUser() The default behavior of this method is to return getRemoteUser() on the wrapped request object.- Specified by:
- getRemoteUserin interface- HttpServletRequest
- Returns:
- a Stringspecifying the login of the user making this request, ornullif the user login is not known
 
 - 
isUserInRolepublic boolean isUserInRole(String role) The default behavior of this method is to return isUserInRole(String role) on the wrapped request object.- Specified by:
- isUserInRolein interface- HttpServletRequest
- Parameters:
- role- a- Stringspecifying the name of the role
- Returns:
- a booleanindicating whether the user making this request belongs to a given role;falseif the user has not been authenticated
 
 - 
getUserPrincipalpublic Principal getUserPrincipal() The default behavior of this method is to return getUserPrincipal() on the wrapped request object.- Specified by:
- getUserPrincipalin interface- HttpServletRequest
- Returns:
- a java.security.Principalcontaining the name of the user making this request;nullif the user has not been authenticated
 
 - 
getRequestedSessionIdpublic String getRequestedSessionId() The default behavior of this method is to return getRequestedSessionId() on the wrapped request object.- Specified by:
- getRequestedSessionIdin interface- HttpServletRequest
- Returns:
- a Stringspecifying the session ID, ornullif the request did not specify a session ID
- See Also:
- HttpServletRequest.isRequestedSessionIdValid()
 
 - 
getRequestURIpublic String getRequestURI() The default behavior of this method is to return getRequestURI() on the wrapped request object.- Specified by:
- getRequestURIin interface- HttpServletRequest
- Returns:
- a Stringcontaining the part of the URL from the protocol name up to the query string
 
 - 
getRequestURLpublic StringBuffer getRequestURL() The default behavior of this method is to return getRequestURL() on the wrapped request object.- Specified by:
- getRequestURLin interface- HttpServletRequest
- Returns:
- a StringBufferobject containing the reconstructed URL
 
 - 
getServletPathpublic String getServletPath() The default behavior of this method is to return getServletPath() on the wrapped request object.- Specified by:
- getServletPathin interface- HttpServletRequest
- Returns:
- a Stringcontaining the path of the servlet being called, as specified in the request URL, or an empty string if the servlet used to process the request is matched using the "/*" pattern. The path will be canonicalized as per section 3.5 of the specification. This method will not return any encoded characters unless the container is configured specifically to allow them.
 
 - 
getSessionpublic HttpSession getSession(boolean create) The default behavior of this method is to return getSession(boolean create) on the wrapped request object.- Specified by:
- getSessionin interface- HttpServletRequest
- Parameters:
- create-- trueto create a new session for this request if necessary;- falseto return- nullif there's no current session
- Returns:
- the HttpSessionassociated with this request ornullifcreateisfalseand the request has no valid session
- See Also:
- HttpServletRequest.getSession()
 
 - 
getSessionpublic HttpSession getSession() The default behavior of this method is to return getSession() on the wrapped request object.- Specified by:
- getSessionin interface- HttpServletRequest
- Returns:
- the HttpSessionassociated with this request
- See Also:
- HttpServletRequest.getSession(boolean)
 
 - 
changeSessionIdpublic String changeSessionId() The default behavior of this method is to return changeSessionId() on the wrapped request object.- Specified by:
- changeSessionIdin interface- HttpServletRequest
- Returns:
- the new session id
- Since:
- Servlet 3.1
 
 - 
isRequestedSessionIdValidpublic boolean isRequestedSessionIdValid() The default behavior of this method is to return isRequestedSessionIdValid() on the wrapped request object.- Specified by:
- isRequestedSessionIdValidin interface- HttpServletRequest
- Returns:
- trueif this request has an id for a valid session in the current session context;- falseotherwise
- See Also:
- HttpServletRequest.getRequestedSessionId(),- HttpServletRequest.getSession(boolean)
 
 - 
isRequestedSessionIdFromCookiepublic boolean isRequestedSessionIdFromCookie() The default behavior of this method is to return isRequestedSessionIdFromCookie() on the wrapped request object.- Specified by:
- isRequestedSessionIdFromCookiein interface- HttpServletRequest
- Returns:
- trueif the session ID was conveyed to the server an an HTTP cookie; otherwise,- false
- See Also:
- HttpServletRequest.getSession(boolean)
 
 - 
isRequestedSessionIdFromURLpublic boolean isRequestedSessionIdFromURL() The default behavior of this method is to return isRequestedSessionIdFromURL() on the wrapped request object.- Specified by:
- isRequestedSessionIdFromURLin interface- HttpServletRequest
- Returns:
- trueif the session ID was conveyed to the server as part of a URL; otherwise,- false
- See Also:
- HttpServletRequest.getSession(boolean)
 
 - 
authenticatepublic boolean authenticate(HttpServletResponse response) throws IOException, ServletException The default behavior of this method is to call authenticate on the wrapped request object.- Specified by:
- authenticatein interface- HttpServletRequest
- Parameters:
- response- The- HttpServletResponseassociated with this- HttpServletRequest
- Returns:
- truewhen non-null values were or have been established as the values returned by- getUserPrincipal,- getRemoteUser, and- getAuthType. Return- falseif authentication is incomplete and the underlying login mechanism has committed, in the response, the message (e.g., challenge) and HTTP status code to be returned to the user.
- Throws:
- IOException- if an input or output error occurred while reading from this request or writing to the given response
- ServletException- if the authentication failed and the caller is responsible for handling the error (i.e., the underlying login mechanism did NOT establish the message and HTTP status code to be returned to the user)
- Since:
- Servlet 3.0
 
 - 
loginpublic void login(String username, String password) throws ServletException The default behavior of this method is to call login on the wrapped request object.- Specified by:
- loginin interface- HttpServletRequest
- Parameters:
- username- The- Stringvalue corresponding to the login identifier of the user.
- password- The password- Stringcorresponding to the identified user.
- Throws:
- ServletException- if the configured login mechanism does not support username password authentication, or if a non-null caller identity had already been established (prior to the call to login), or if validation of the provided username and password fails.
- Since:
- Servlet 3.0
 
 - 
logoutpublic void logout() throws ServletExceptionThe default behavior of this method is to call login on the wrapped request object.- Specified by:
- logoutin interface- HttpServletRequest
- Throws:
- ServletException- if logout fails
- Since:
- Servlet 3.0
 
 - 
getPartspublic Collection<Part> getParts() throws IOException, ServletException The default behavior of this method is to call getParts on the wrapped request object.Any changes to the returned Collectionmust not affect thisHttpServletRequestWrapper.- Specified by:
- getPartsin interface- HttpServletRequest
- Returns:
- a (possibly empty) Collectionof thePartcomponents of this request
- Throws:
- IOException- if an I/O error occurred during the retrieval of the- Partcomponents of this request
- ServletException- if this request is not of type- multipart/form-data
- Since:
- Servlet 3.0
- See Also:
- MultipartConfig.maxFileSize(),- MultipartConfig.maxRequestSize()
 
 - 
getPartpublic Part getPart(String name) throws IOException, ServletException The default behavior of this method is to call getPart on the wrapped request object.- Specified by:
- getPartin interface- HttpServletRequest
- Parameters:
- name- the name of the requested- Part
- Returns:
- The Partwith the given name, ornullif this request is of typemultipart/form-data, but does not contain the requestedPart
- Throws:
- IOException- if an I/O error occurred during the retrieval of the requested- Part
- ServletException- if this request is not of type- multipart/form-data
- Since:
- Servlet 3.0
- See Also:
- MultipartConfig.maxFileSize(),- MultipartConfig.maxRequestSize()
 
 - 
upgradepublic <T extends HttpUpgradeHandler> T upgrade(Class<T> handlerClass) throws IOException, ServletException Create an instance ofHttpUpgradeHandlerfor a given class and uses it for the http protocol upgrade processing.- Specified by:
- upgradein interface- HttpServletRequest
- Type Parameters:
- T- The- Class, which extends- HttpUpgradeHandler, of the- handlerClass.
- Parameters:
- handlerClass- The- HttpUpgradeHandlerclass used for the upgrade.
- Returns:
- an instance of the HttpUpgradeHandler
- Throws:
- IOException- if an I/O error occurred during the upgrade
- ServletException- if the given- handlerClassfails to be instantiated
- Since:
- Servlet 3.1
- See Also:
- HttpUpgradeHandler,- WebConnection
 
 - 
newPushBuilderpublic PushBuilder newPushBuilder() The default behavior of this method is to call newPushBuilder on the wrapped request object.- Specified by:
- newPushBuilderin interface- HttpServletRequest
- Returns:
- a PushBuilderfor issuing server push responses from the current request, or null if push is not supported
- Since:
- Servlet 4.0
 
 - 
getTrailerFieldspublic Map<String,String> getTrailerFields() The default behavior of this method is to call getTrailerFields on the wrapped request object.- Specified by:
- getTrailerFieldsin interface- HttpServletRequest
- Returns:
- A map of trailer fields in which all the keys are in lowercase, regardless of the case they had at the
 protocol level. If there are no trailer fields, yet HttpServletRequest.isTrailerFieldsReady()is returning true, the empty map is returned.
- Since:
- Servlet 4.0
 
 - 
isTrailerFieldsReadypublic boolean isTrailerFieldsReady() The default behavior of this method is to call isTrailerFieldsReady on the wrapped request object.- Specified by:
- isTrailerFieldsReadyin interface- HttpServletRequest
- Returns:
- a boolean whether trailer fields are ready to read
- Since:
- Servlet 4.0
 
 
- 
 
-