NAME
Net::LDAP::Class::Loader - interrogate an LDAP schema
SYNOPSIS
package MyLDAPClass;
use strict;
use base qw( Net::LDAP::Class );
__PACKAGE__->metadata->setup(
use_loader => 1,
ldap => $ldap,
object_classes => [qw( posixAccount )], # optional
);
1;
DESCRIPTION
Net::LDAP::Class:Loader inspects a Net::LDAP::Schema object and determines which attributes are available and which are unique.
METHODS
init
Checks that ldap() and object_classes() are defined.
interrogate
Inspects the Net::LDAP::Schema object and returns hashref of attributes
and unique_attributes
.
base_dn
Get/set the base DN used by interrogate().
ldap
Get/set the Net::LDAP object.
object_classes
Get/set the array ref of object classes to be used by interrogate().
AUTHOR
Peter Karman, <karman at cpan.org>
BUGS
Please report any bugs or feature requests to bug-net-ldap-class at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-LDAP-Class. 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::Class
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
Search CPAN
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