Catalyst::Model::LDAP::Connection man page on Pidora

Man page or keyword search:  
man Server   31170 pages
apropos Keyword Search (all sections)
Output format
Pidora logo
[printable version]

Catalyst::Model::LDAP:UsernContributed PerCatalyst::Model::LDAP::Connection(3)

NAME
       Catalyst::Model::LDAP::Connection - Convenience methods for Net::LDAP

DESCRIPTION
       Subclass of Net::LDAP, which adds paging support and an additional
       method to rebless the entries.  See Catalyst::Model::LDAP::Entry for
       more information.

OVERRIDING METHODS
       If you want to override methods provided by Net::LDAP, you can use the
       "connection_class" configuration variable.  For example:

	   # In lib/MyApp/Model/LDAP.pm
	   package MyApp::Model::LDAP;
	   use base qw/Catalyst::Model::LDAP/;

	   __PACKAGE__->config(
	       # ...
	       connection_class => 'MyApp::LDAP::Connection',
	   );

	   1;

	   # In lib/MyApp/LDAP/Connection.pm
	   package MyApp::LDAP::Connection;
	   use base qw/Catalyst::Model::LDAP::Connection/;
	   use Authen::SASL;

	   sub bind {
	       my ($self, @args) = @_;

	       my $sasl = Authen::SASL->new(...);
	       push @args, sasl => $sasl;

	       $self->SUPER::bind(@args);
	   }

	   1;

METHODS
   new
       Create a new connection to the specific LDAP server.

	   my $conn = Catalyst::Model::LDAP::Connection->new(
	       host => 'ldap.ufl.edu',
	       base => 'ou=People,dc=ufl,dc=edu',
	   );

       On connection failure, an error is thrown using "croak" in Carp.

   bind
       Bind to the configured LDAP server using the specified credentials.

	   $conn->bind(
	       dn	=> 'uid=dwc,ou=People,dc=ufl,dc=edu',
	       password => 'secret',
	   );

       This method behaves similarly to "bind" in Net::LDAP, except that it
       gives an explicit name to the "dn" parameter.  For example, if you need
       to use SASL to bind to the server, you can specify that in your call:

	   $conn->bind(
	       dn   => 'uid=dwc,ou=People,dc=ufl,dc=edu',
	       sasl => Authen::SASL->new(mechanism => 'GSSAPI'),
	   );

       Additionally, if the "start_tls" configuration option is present, the
       client will use "start_tls" in Net::LDAP to make your connection
       secure.

       For more information on customizing the bind process, see "OVERRIDING
       METHODS".

   search
       Search the configured directory using a given filter.  For example:

	   my $mesg = $c->model('Person')->search('(cn=Lou Rhodes)');
	   my $entry = $mesg->shift_entry;
	   print $entry->title;

       This method overrides the "search" method in Net::LDAP to add paging
       support.	 The following additional options are supported:

       "page"
	   Which page to return.

       "rows"
	   Rows to return per page.  Defaults to 25.

       "order_by"
	   Sort the records (on the server) by the specified attribute.
	   Required if you use "page".

       When paging is active, this method returns the server response and a
       Data::Page object.  Otherwise, it returns the server response only.

SEE ALSO
       ·   Catalyst::Model::LDAP

AUTHORS
       ·   Daniel Westermann-Clark

       ·   Marcus Ramberg (paging support)

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

perl v5.14.1			  2007-11-Catalyst::Model::LDAP::Connection(3)
[top]

List of man pages available for Pidora

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net