Servlet::Http::HttpServletRequestWrapper - HTTP servlet request wrapper class
my $wrapper = Servlet::Http::HttpServletRequestWrapper->new($request);
my $req = $wrapper->getRequest(); $wrapper->setRequest($req);
Provides a convenient implementation of the HttpServletRequest interface that may be subclassed by developers wishing to adapt the request to a Servlet. This class implements the Wrapper or Decorator pattern. Methods default to calling through to the wrapped request object.
new($request)
Parameters:
getRequest()
setRequest($request)
Parameters:
the Servlet::Http::HttpServletRequest manpage, the Servlet::ServletRequestWrapper manpage
Brian Moseley, bcm@maz.org