NAME

App::LDAP::LDIF - base class of models in App::LDAP

SYNOPSIS

package App::LDAP::LDIF::Animal

use Moose;
with 'App::LDAP::LDIF';

use Net::LDAP::Entry;

has name => (
    is  => "rw",
    isa => "Str",
);

package Controller;
my $dog = App::LDAP::LDIF::Animal->new( name => "lucky" );

my $dog->save;

my $cat = App::LDAP::LDIF::Animal->find( name => "mou" );
say $cat->entry->ldif;