Methods Summary |
---|
public java.lang.String | getInfo()Return descriptive information about this implementation.
return (this.info);
|
public java.lang.String | getPathInfo()Override the getPathInfo() method of the wrapped request.
// --------------------------------------------- HttpServletRequest Methods
return (this.pathInfo);
|
public java.lang.String | getPathTranslated()Override the getPathTranslated() method of the
wrapped request.
return (this.pathTranslated);
|
public java.lang.String | getRequestURI()Override the getRequestURI() method of the wrapped request.
return (this.requestURI);
|
public java.lang.String | getServletPath()Override the getServletPath() method of the wrapped
request.
return (this.servletPath);
|
void | setPathInfo(java.lang.String pathInfo)Set the path information for this request.
this.pathInfo = pathInfo;
|
void | setPathTranslated(java.lang.String pathTranslated)Set the translated path info for this request.
this.pathTranslated = pathTranslated;
|
void | setRequestURI(java.lang.String requestURI)Set the request URI for this request.
this.requestURI = requestURI;
|
void | setServletPath(java.lang.String servletPath)Set the servlet path for this request.
this.servletPath = servletPath;
|