GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Servlet::FilterChain(3) User Contributed Perl Documentation Servlet::FilterChain(3)

Servlet::FilterChain - filter chain interface

  $chain->doFilter($request, $response);

This 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.

doFilter($request, $response)
Causes the next filter in the chain to be invoked, or if the calling filter is the last filter in the chain, causes the resource at the end of the chain to be invoked.

Parameters:

$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:

Servlet::ServletException
if an exception occurs while performing the filtering task

Servlet::Filter, Servlet::ServletException, Servlet::ServletRequest, Servlet::ServletResponse

Brian Moseley, bcm@maz.org
2001-07-13 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.