In looking at issue SERVLET_SPEC-19 [1] the proposal is to add the
following two methods to ServletRequestListener -
/**
* Receives notification that a ServletRequest is about to be
* forwarded.
*
* @param sre the ServletRequestEvent containing the ServletRequest
* and the ServletContext representing the web application
*/
public void requestForwarded(ServletRequestEvent sre);
/**
* Receives notification that a ServletRequest is about to be
* included.
*
* @param sre the ServletRequestEvent containing the ServletRequest
* and the ServletContext representing the web application
*/
public void requestIncluded(ServletRequestEvent sre);
Please let me know if you see any issues with this.
[1]
http://java.net/jira/browse/SERVLET_SPEC-19
<
http://java.net/jira/browse/SERVLET_SPEC-19>
Thanks
- Rajiv