Methods Summary |
---|
private javax.servlet.http.HttpServletRequest | _getHttpServletRequest()
return (HttpServletRequest) super.getRequest();
|
public java.lang.String | getAuthType()The default behavior of this method is to return getAuthType()
on the wrapped request object.
return this._getHttpServletRequest().getAuthType();
|
public java.lang.String | getContextPath()The default behavior of this method is to return getContextPath()
on the wrapped request object.
return this._getHttpServletRequest().getContextPath();
|
public javax.servlet.http.Cookie[] | getCookies()The default behavior of this method is to return getCookies()
on the wrapped request object.
return this._getHttpServletRequest().getCookies();
|
public long | getDateHeader(java.lang.String name)The default behavior of this method is to return getDateHeader(String name)
on the wrapped request object.
return this._getHttpServletRequest().getDateHeader(name);
|
public java.lang.String | getHeader(java.lang.String name)The default behavior of this method is to return getHeader(String name)
on the wrapped request object.
return this._getHttpServletRequest().getHeader(name);
|
public java.util.Enumeration | getHeaderNames()The default behavior of this method is to return getHeaderNames()
on the wrapped request object.
return this._getHttpServletRequest().getHeaderNames();
|
public java.util.Enumeration | getHeaders(java.lang.String name)The default behavior of this method is to return getHeaders(String name)
on the wrapped request object.
return this._getHttpServletRequest().getHeaders(name);
|
public int | getIntHeader(java.lang.String name)The default behavior of this method is to return getIntHeader(String name)
on the wrapped request object.
return this._getHttpServletRequest().getIntHeader(name);
|
public java.lang.String | getMethod()The default behavior of this method is to return getMethod()
on the wrapped request object.
return this._getHttpServletRequest().getMethod();
|
public java.lang.String | getPathInfo()The default behavior of this method is to return getPathInfo()
on the wrapped request object.
return this._getHttpServletRequest().getPathInfo();
|
public java.lang.String | getPathTranslated()The default behavior of this method is to return getPathTranslated()
on the wrapped request object.
return this._getHttpServletRequest().getPathTranslated();
|
public java.lang.String | getQueryString()The default behavior of this method is to return getQueryString()
on the wrapped request object.
return this._getHttpServletRequest().getQueryString();
|
public java.lang.String | getRemoteUser()The default behavior of this method is to return getRemoteUser()
on the wrapped request object.
return this._getHttpServletRequest().getRemoteUser();
|
public java.lang.String | getRequestURI()The default behavior of this method is to return getRequestURI()
on the wrapped request object.
return this._getHttpServletRequest().getRequestURI();
|
public java.lang.StringBuffer | getRequestURL()The default behavior of this method is to return getRequestURL()
on the wrapped request object.
return this._getHttpServletRequest().getRequestURL();
|
public java.lang.String | getRequestedSessionId()The default behavior of this method is to return getRequestedSessionId()
on the wrapped request object.
return this._getHttpServletRequest().getRequestedSessionId();
|
public java.lang.String | getServletPath()The default behavior of this method is to return getServletPath()
on the wrapped request object.
return this._getHttpServletRequest().getServletPath();
|
public javax.servlet.http.HttpSession | getSession(boolean create)The default behavior of this method is to return getSession(boolean create)
on the wrapped request object.
return this._getHttpServletRequest().getSession(create);
|
public javax.servlet.http.HttpSession | getSession()The default behavior of this method is to return getSession()
on the wrapped request object.
return this._getHttpServletRequest().getSession();
|
public java.security.Principal | getUserPrincipal()The default behavior of this method is to return getUserPrincipal()
on the wrapped request object.
return this._getHttpServletRequest().getUserPrincipal();
|
public boolean | isRequestedSessionIdFromCookie()The default behavior of this method is to return isRequestedSessionIdFromCookie()
on the wrapped request object.
return this._getHttpServletRequest().isRequestedSessionIdFromCookie();
|
public boolean | isRequestedSessionIdFromURL()The default behavior of this method is to return isRequestedSessionIdFromURL()
on the wrapped request object.
return this._getHttpServletRequest().isRequestedSessionIdFromURL();
|
public boolean | isRequestedSessionIdFromUrl()The default behavior of this method is to return isRequestedSessionIdFromUrl()
on the wrapped request object.
return this._getHttpServletRequest().isRequestedSessionIdFromUrl();
|
public boolean | isRequestedSessionIdValid()The default behavior of this method is to return isRequestedSessionIdValid()
on the wrapped request object.
return this._getHttpServletRequest().isRequestedSessionIdValid();
|
public boolean | isUserInRole(java.lang.String role)The default behavior of this method is to return isUserInRole(String role)
on the wrapped request object.
return this._getHttpServletRequest().isUserInRole(role);
|