logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Apache2::SiteControl::ManagerFactory - An abstract base class to use as a pattern for custom

Author

       This module was written by Tony Kay, <tkay@uoregon.edu>.

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;

Name

       Apache2::SiteControl::ManagerFactory - An abstract base class to use as a pattern for custom
       PermissionManager production.

See Also

       Apache2::SiteControl::PermissionManager, Apache::SiteControl::Rule

See Also