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

NAME

Net::LDAP::Entry -- An LDAP entry object

SYNOPSIS

  use Net::LDAP::Entry;
  
  $entry = Net::LDAP::Entry->new;
  
  $entry->add(
    attr1 => 'value1',
    attr2 => [qw(value1 value2)]
  );
  
  $entry->delete( 'unwanted' );
  
  $entry->replace(
    attr1 => 'newvalue'
    attr2 => [qw(new values)]
  );

DESCRIPTION

CONSTRUCTOR

METHODS

add ( ATTR => VALUE [, ATTR2 => VALUE2 ... ] )
replace ( ATTR => VALUE [, ATTR2 => VALUE2 ... ] )
delete ( ATTR [, ATTR2 ... ] )
dn ( [ DN ] )
update ( [ CLIENT ] )

This method is not implemented yet.

attributes
get ( ATTR )

SEE ALSO

Net::LDAP

ACKNOWLEDGEMENTS

This document is based on a document originally written by Russell Fulton <r.fulton@auckland.ac.nz>.

AUTHOR

Graham Barr <gbarr@pobox.com>.

COPYRIGHT

Copyright (c) 1997-1999 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.