The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Servlet::FilterConfig - filter configuration interface

SYNOPSIS

  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();

DESCRIPTION

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.

METHODS

getFilterName()

Returns the name of the filter as defined in the deployment descriptor.

SEE ALSO

Servlet::Config

AUTHOR

Brian Moseley, bcm@maz.org