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

33 lines
482 B
Perl
Raw Normal View History

## @file
# Null userDB mechanism
## @class
# Null userDB mechanism class
package Lemonldap::NG::Portal::UserDBNull;
use strict;
## @apmethod int userDBInit()
# Do nothing
# @return Lemonldap::NG::Portal constant
sub userDBInit {
PE_OK;
}
## @apmethod int getUser()
# Do nothing
# @return Lemonldap::NG::Portal constant
sub getUser {
PE_OK;
}
## @apmethod int setSessionInfo()
# Do nothing
# @return Lemonldap::NG::Portal constant
sub setSessionInfo {
PE_OK;
}
1;