Servlet::Config - configuration super interface
my @params = $config->getInitParameterNames();
for my $p (@params) { print sprintf "%s: %s\n", $p, $config->getInitParameter($p); }
my $context = $config->getServletContext();
This is the super interface for objects in the Servlet API that pass configuration information to Servlets or Filters during initialization. The configuration information contains initialization parameters, which are a set of name/value pairs, and a Servlet::ServletContext object, which gives the calling object information about the web container.
getInitParameter($name)
Parameters:
getInitParameterNames()
getServletContext()
the Servlet::ServletContext manpage
Brian Moseley, bcm@maz.org