The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::LDAP::Batch::Action::Add - add entry to LDAP server

SYNOPSIS

 use Net::LDAP::Batch::Action::Add;
 my $action = Net::LDAP::Batch::Action->new(
            {
                ldap => $net_ldap_object,
                dn   => 'name=foo,dc=company,dc=com',
                attr => [
                        name => 'foo',
                        mail => 'foo@company.com'
                        ],
            });
 $action->execute or $action->rollback;
        

DESCRIPTION

This is a base class for batch actions.

NOTE: Net::LDAP::Batch::Action objects will croak() if anything unusual happens. This approach assumes that Catastrophic Failure is a Good Thing. So use eval() if you need to catch exceptions.

METHODS

init

Overrides base method to confirm that dn() and attr() are set.

execute

Creates a Net::LDAP::Entry object, adds the dn() and attr() values to it, then adds to the LDAP server.

rollback

Deletes the entry added in execute().

AUTHOR

Peter Karman, <karman at cpan.org>

BUGS

Please report any bugs or feature requests to bug-net-ldap-batch at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-LDAP-Batch. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Net::LDAP::Batch

You can also look for information at:

ACKNOWLEDGEMENTS

The Minnesota Supercomputing Institute http://www.msi.umn.edu/ sponsored the development of this software.

COPYRIGHT

Copyright 2008 by the Regents of the University of Minnesota. All rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Net::LDAP