The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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