Avoid using the deprecated HttpServlet request/response proxy classes

This rule flags the following classes:

These methods were deprecated in WebSphere Application Server Version 6.0 and might be removed in a future release.

Use the HttpServletRequestWrapper class instead of the HttpServletRequestProxy class. You can extend this wrapper class to overload or enhance the functionality of a server-provided HttpServletRequest .

Use the HttpServletResponseWrapper class instead of the HttpServletResponseProxy class. You can extend this wrapper class to overload or enhance the functionality of a server-provided HttpServletResponse .

For additional information, see