The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
##@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.1.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;
}

1;