|
NAMEServlet::FilterChain - filter chain interfaceSYNOPSIS$chain->doFilter($request, $response); DESCRIPTIONThis is the interface for an object provided by the servlet container to the developer giving a view into the invocation chain of a filtered request for a resource. Servlet::Filter objects use it to invoke the next filter in the chain, or if the calling filter is the last filter in the chain, to invoke the resource at the end of the chain.METHODS
$request
$request =item $request
the Servlet::ServletRequest object that contains the client's request $response $response =item $response the Servlet::ServletResponse object that contains the servlet's response Throws:
SEE ALSOServlet::Filter, Servlet::ServletException, Servlet::ServletRequest, Servlet::ServletResponseAUTHORBrian Moseley, bcm@maz.org
Visit the GSP FreeBSD Man Page Interface. |