Missing files (#1067)

This commit is contained in:
Xavier Guimard 2017-02-16 11:08:15 +00:00
parent ed748080d1
commit 511264db84
4 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# LLNG wrapper class to enable CDA handler with Apache-2/ModPerl-2
#
# See http://lemonldap-ng.org/documentation/latest/handlerarch
package Lemonldap::NG::Handler::ApacheMP2::CDA;
use strict;
use base 'Lemonldap::NG::Handler::Lib::CDA',
'Lemonldap::NG::Handler::ApacheMP2::Main';
our $VERSION = '2.0.0';
1;

View File

@ -0,0 +1,13 @@
# LLNG wrapper class to enable AuthBasic handler with auto-protected PSGI
#
# See http://lemonldap-ng.org/documentation/latest/handlerarch
package Lemonldap::NG::Handler::Server::AuthBasic;
use strict;
use base 'Lemonldap::NG::Handler::Lib::AuthBasic',
'Lemonldap::NG::Handler::PSGI::Main';
our $VERSION = '2.0.0';
1;

View File

@ -0,0 +1,13 @@
# LLNG wrapper class to enable CDA handler with auto-protected PSGI
#
# See http://lemonldap-ng.org/documentation/latest/handlerarch
package Lemonldap::NG::Handler::Server::CDA;
use strict;
use base 'Lemonldap::NG::Handler::Lib::CDA',
'Lemonldap::NG::Handler::PSGI::Main';
our $VERSION = '2.0.0';
1;

View File

@ -0,0 +1,13 @@
# LLNG wrapper class to enable CDA handler with FastCGI handler
#
# See http://lemonldap-ng.org/documentation/latest/handlerarch
package Lemonldap::NG::Handler::Server::CDA;
use strict;
use base 'Lemonldap::NG::Handler::Lib::CDA',
'Lemonldap::NG::Handler::Server::Main';
our $VERSION = '2.0.0';
1;