Example usage for Java javax.servlet.http HttpServletRequestWrapper fields, constructors, methods, implement or subclass
The text is from its open source code.
HttpServletRequestWrapper(HttpServletRequest request) Constructs a request object wrapping the given request. |
Object | getAttribute(String name) The default behavior of this method is to call getAttribute(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. |
String | getMethod() The default behavior of this method is to return getMethod() on the wrapped request object. |
String | getParameter(String name) The default behavior of this method is to return getParameter(String name) on the wrapped request object. |
Map | getParameterMap() The default behavior of this method is to return getParameterMap() on the wrapped request object. |
String | getPathInfo() The default behavior of this method is to return getPathInfo() on the wrapped request object. |
ServletRequest | getRequest() Return the wrapped request object. |
RequestDispatcher | getRequestDispatcher(String path) The default behavior of this method is to return getRequestDispatcher(String path) on the wrapped request object. |
String | getRequestURI() The default behavior of this method is to return getRequestURI() on the wrapped request object. |
String | getServerName() The default behavior of this method is to return getServerName() on the wrapped request object. |
int | getServerPort() The default behavior of this method is to return getServerPort() on the wrapped request object. |
String | getServletPath() The default behavior of this method is to return getServletPath() on the wrapped request object. |
java.security.Principal | getUserPrincipal() The default behavior of this method is to return getUserPrincipal() on the wrapped request object. |
void | setAttribute(String name, Object o) The default behavior of this method is to return setAttribute(String name, Object o) on the wrapped request object. |
void | setRequest(ServletRequest request) Sets the request object being wrapped. |