GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::ACL::Set(3) User Contributed Perl Documentation Net::ACL::Set(3)

Net::ACL::Set - Abstract parent class of Set-classes

    package Net::ACL::SetMyPackage;

    use Net::ACL::Set;
    @ISA     = qw( Net::ACL::Set );

    sub new { ... };
    sub set { ... };


    package main;

    # Construction
    my $set = new Net::ACL::SetMyPackage($args);

    # Accessor Methods
    @data = $set->set(@data);

This is an abstract parent class for all Net::ACL::Set* classes. It is used by the Net::ACL::Rule object.

It only has a constructor new() and a method set(). Both should be replaced in any ancestor object.

4 new() - Constructor of Net::ACL::Set* objects
    my $set = new Net::ACL::SetMyPackage($args);
    

This is the constructor for Net::ACL::Set::* objects. It returns a reference to the newly created object. It takes one argument, which should describe what to set.

set()
This function should modify the data given as arguments (one or more) with the data passed to the constructor and return the modified data.

Net::ACL::Rule, Net::ACL, Net::ACL::Set::Scalar, Net::ACL::Set::Union, Net::ACL::Set::Add

Martin Lorensen <bgp@martin.lorensen.dk>
2003-06-06 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.