lemonldap-ng/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/PasswordDBNull.pm

35 lines
575 B
Perl
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

##@file
# Null password backend file
##@class
# Null password backend class
package Lemonldap::NG::Portal::PasswordDBNull;
use strict;
use Lemonldap::NG::Portal::Simple;
our $VERSION = '1.0.0';
## @apmethod int passwordDBInit()
# Does nothing
# @return Lemonldap::NG::Portal constant
sub passwordDBInit {
PE_OK;
}
## @apmethod int modifyPassword()
# Does nothing
# @return Lemonldap::NG::Portal constant
sub modifyPassword {
PE_OK;
}
## @apmethod int resetPassword()
# Does nothing
# @return Lemonldap::NG::Portal constant
sub resetPassword {
PE_OK;
}
1;