lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/PasswordDBChoice.pm
Xavier Guimard 2d2edb61ac Merge experimental branch (#960)
Also update version to 2.0
2016-03-17 22:19:44 +00:00

39 lines
814 B
Perl

##@file
# Choice user backend file
##@class
# Choice user backend class
package Lemonldap::NG::Portal::PasswordDBChoice;
use strict;
use Lemonldap::NG::Portal::_Choice;
use Lemonldap::NG::Portal::Simple;
our $VERSION = '2.0.0';
## @apmethod int passwordDBInit()
# Does nothing
# @return Lemonldap::NG::Portal constant
sub passwordDBInit {
my $self = shift;
return $self->_choice->try( 'passwordDBInit', 2 );
}
## @apmethod int modifyPassword()
# Does nothing
# @return Lemonldap::NG::Portal constant
sub modifyPassword {
my $self = shift;
return $self->_choice->try( 'modifyPassword', 2 );
}
## @apmethod int passwordDBFinish()
# Does nothing
# @return Lemonldap::NG::Portal constant
sub passwordDBFinish {
my $self = shift;
return $self->_choice->try( 'passwordDBFinish', 2 );
}
1;