Catalyst-Model-LDAP
view release on metacpan or search on metacpan
lib/Catalyst/Model/LDAP/Entry.pm view on Meta::CPAN
181920212223242526272829303132333435363738
my
$self
=
$class
->
next
::method(
$dn
,
%attributes
);
if
(
$client
) {
$self
->_ldap_client(
$client
);
}
return
$self
;
}
sub
update {
my
$self
=
shift
;
my
$client
=
shift
||
$self
->_ldap_client;
croak
'No LDAP client provided to update'
unless
$client
;
return
$self
->
next
::method(
$client
,
@_
);
}
sub
can {
my
(
$self
,
$method
) =
@_
;
( run in 0.239 second using v1.01-cache-2.11-cpan-5f2e87ce722 )