1 package SL::Auth::Constants;
5 use Exporter qw(import);
23 # add all the other ":class" tags to the ":all" class,
27 push @{$EXPORT_TAGS{all}}, grep {!$seen{$_}++} @$_ for values %EXPORT_TAGS;
30 Exporter::export_ok_tags('all');
33 use constant ERR_PASSWORD => 1;
34 use constant ERR_USER => 2;
35 use constant ERR_BACKEND => 100;
37 use constant SESSION_OK => 0;
38 use constant SESSION_NONE => 1;
39 use constant SESSION_EXPIRED => 2;
49 SL::Auth::Constants - COnstants for Auth module
53 use SL::Auth::Constants qw(:all);
55 OK == $auth->authenticate($user, $pass) or die;
59 This module provides status constants for authentication handling
67 Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>