annotate Lib/Security.pm @ 113:7b14e0122b79
Updated PostToDOM transformation
added selectSingleNode method to IMPL::DOM::Node
Implemented FormWrapper in the Web::Application::ControllerUnit
author |
wizard |
date |
Fri, 21 May 2010 02:38:11 +0400 |
parents |
16ada169ca75 |
children |
|
rev |
line source |
49
|
1 use strict;
|
|
2 package Security;
|
|
3
|
|
4 use constant {
|
|
5 AUTH_FAILED => 0,
|
|
6 AUTH_SUCCESS => 1,
|
|
7 AUTH_INCOMPLETE => 2,
|
|
8 AUTH_NOAUTH => 3
|
|
9 };
|
|
10
|
|
11 my $CurrentSession;
|
|
12
|
|
13 sub CurrentSession {
|
|
14 my ($class,$newSession) = @_;
|
|
15
|
|
16 $CurrentSession = $newSession if @_>=2;
|
|
17 return $CurrentSession;
|
|
18 }
|
|
19
|
|
20 1;
|
|
21
|