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


Net-LDAPxs documentation  | view source Contained in the Net-LDAPxs distribution.

Index


NAME

Top

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

SYNOPSIS

Top

  use Net::LDAPxs;

  $ldap = Net::LDAPxs->new ( $host );
  $msg = $ldap->search ( @search_args );

  @entries = $msg->entries();

  foreach my $entry (@entries) {
      foreach my $attr ($entry->attributes()) {
          foreach my $val ($entry->get_value($attr)) {
              print "$attr, $val\n";
          }
      }
  }

DESCRIPTION

Top

The Net::LDAPxs::Entry object represents a single entry in the directory. It is a container for attribute-value pairs.

METHODS

Top

attributes ( OPTIONS )

Return a list of attributes in this entry

dn ( )

Get the DN of the entry.

get_value ( ATTR )

Get the values for the attribute ATTR. In a list context returns all values for the given attribute, or the empty list if the attribute does not exist. In a scalar context returns the first value for the attribute.

ACKNOWLEDGEMENTS

Top

This document is based on the document of Net::LDAP::Entry

AUTHOR

Top

Pan Yu <xiaocong@vip.163.com>

COPYRIGHT AND LICENSE

Top


Net-LDAPxs documentation  | view source Contained in the Net-LDAPxs distribution.