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

36 lines
400 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
2021-04-01 23:07:58 +02:00
our $VERSION = '2.0.12';
2016-05-22 13:27:34 +02:00
2016-06-09 20:40:20 +02:00
# INITIALIZATION
2016-05-22 13:27:34 +02:00
sub init {
2021-04-01 23:07:58 +02:00
return 1;
2016-05-22 13:27:34 +02:00
}
2016-06-09 20:40:20 +02:00
# RUNNING METHODS
2016-05-22 13:27:34 +02:00
sub getUser {
2021-04-01 23:07:58 +02:00
return PE_OK;
2016-05-22 13:27:34 +02:00
}
2020-12-22 15:17:23 +01:00
sub findUser {
2021-04-01 23:07:58 +02:00
return PE_OK;
2020-12-22 15:17:23 +01:00
}
2016-05-22 13:27:34 +02:00
sub setSessionInfo {
2021-04-01 23:07:58 +02:00
return PE_OK;
2016-05-22 13:27:34 +02:00
}
sub setGroups {
2021-04-01 23:07:58 +02:00
return PE_OK;
2016-05-22 13:27:34 +02:00
}
1;