NAME

App::LDAP::Role::Bindable - make a command itself bindable to a LDAP server

SYNOPSIS

package App::LDAP::Command::YourCommand;
use Moose;
with qw( App::LDAP::Role::Command
         App::LDAP::Role::Bindable );

package main;
App::LDAP::Command::YourCommand->new_with_options()->prepare()->run();

DESCRIPTION

This role hook the prepare() method to bind the handler through $UID to the LDAP server before running.