|
NAMENet::ACL::Match - Abstract parent class of Match-classes SYNOPSIS package Net::ACL::MatchMyPackage;
use Net::ACL::Match;
@ISA = qw( Net::ACL::Match );
sub new { ... };
sub match { ... };
package main;
# Construction
my $match = new Net::ACL::MatchMyPackage($args);
# Accessor Methods
$rc = $match->match(@data);
$index = $match->index($index);
DESCRIPTIONThis is an abstract parent class for all Net::ACL::Match* classes. It is used by the Net::ACL::Rule object. It only has a constructor new() and two methods match() and index(). Both new and match should be replaced in any ancestor object. CONSTRUCTOR
ACCESSOR METHODS
SEE ALSONet::ACL::Rule, Net::ACL, Net::ACL::Match::IP, Net::ACL::Match::Prefix, Net::ACL::Match::List, Net::ACL::Match::Scalar, Net::ACL::Match::Regexp, Net::ACL::Match::Member AUTHORMartin Lorensen <bgp@martin.lorensen.dk>
|