Servlet::FilterConfig - filter configuration interface
my $name = $config->getFilterName();
my @params = $config->getInitParameterNames();
for my $p (@params) {
print sprintf "%s: %s\n", $p, $config->getInitParameter($p);
}
my $context = $config->getServletContext();
This is the interface for an object used by a servlet container to pass
configuration information to a Servlet::Filter during initialization.
The interface extends Servlet::Config.
- getFilterName()
- Returns the name of the filter as defined in the deployment
descriptor.
Brian Moseley, bcm@maz.org