JWSSystemServletRequestWrapperpublic class JWSSystemServletRequestWrapper extends HttpServletRequestWrapper The request wrapper object by which static document requests are delegated
to the default servlet implementation. |
Fields Summary |
---|
private URI | relativeFileURIURI of the content requested, relative to the app server's installation directory |
Constructors Summary |
---|
public JWSSystemServletRequestWrapper(HttpServletRequest request, URI relativeFileURI)Creates a new instance of JWSSystemServletRequestWrapper
super(request);
this.relativeFileURI = relativeFileURI;
|
Methods Summary |
---|
public java.lang.String | getPathInfo()Overrides the default implementation to provide the web container with
the correct path, relative to the actual doc base which is the installation
directory of the app server.
return "/" + relativeFileURI.toString();
|
|