debian man page for apache2::sitecontrol::managerfactory

Query: apache2::sitecontrol::managerfactory

OS: debian

Section: 3pm

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

Apache2::SiteControl::ManagerFactory(3pm)		User Contributed Perl Documentation		 Apache2::SiteControl::ManagerFactory(3pm)

NAME
Apache2::SiteControl::ManagerFactory - An abstract base class to use as a pattern for custom PermissionManager production.
DESCRIPTION
This package is a simple abstract base class. Use it as the base for creating your instances of permission managers. For example, package MyManagerFactory; use strict; use Apache2::SiteControl::ManagerFactory; use base qw(Apache2::SiteControl::ManagerFactory); our $manager; sub getPermissionManager { return $manager if(defined($manager) && $manager->isa(Apache2::SiteControl::ManagerFactory)); $manager = new Apache2::SiteControl::PermissionManager; $manager->addRule(new XYZRule); $manager->addRule(new SomeOtherRule); return $manager; } 1;
SEE ALSO
Apache2::SiteControl::PermissionManager, Apache::SiteControl::Rule
AUTHOR
This module was written by Tony Kay, <tkay@uoregon.edu>.
COPYRIGHT AND LICENSE
perl v5.14.2 2006-03-17 Apache2::SiteControl::ManagerFactory(3pm)
Related Man Pages
apache2::command(3pm) - debian
apache2::filterrec(3pm) - debian
apache2::mpm(3pm) - debian
apache2::sitecontrol(3pm) - debian
apache2::sitecontrol::user(3pm) - debian
Similar Topics in the Unix Linux Community
awk or sed - Convert 2 lines to 1 line
Introduction
Detecting unused variables...
How to copy a column of multiple files and paste into new excel file (next to column)?
My first PERL incarnation... Audio Oscillograph