lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Null.pm

32 lines
335 B
Perl
Raw Normal View History

2016-05-22 13:27:34 +02:00
package Lemonldap::NG::Portal::UserDB::Null;
use strict;
use Mouse;
use Lemonldap::NG::Portal::Main::Constants;
2016-06-02 23:20:36 +02:00
extends 'Lemonldap::NG::Common::Module';
2016-05-22 13:27:34 +02:00
our $VERSION = '2.0.0';
2016-06-09 20:40:20 +02:00
# INITIALIZATION
2016-05-22 13:27:34 +02:00
sub init {
1;
}
2016-06-09 20:40:20 +02:00
# RUNNING METHODS
2016-05-22 13:27:34 +02:00
sub getUser {
PE_OK;
}
sub setSessionInfo {
PE_OK;
}
sub setGroups {
PE_OK;
}
1;