annotate Lib/DOM/Providers/Security.pm @ 55:609b59c9f03c
Web application
rewrote prop_list implementation to support IMPL::Object::List
author |
wizard |
date |
Wed, 03 Mar 2010 17:40:18 +0300 |
parents |
16ada169ca75 |
children |
|
rev |
line source |
49
|
1 use strict;
|
|
2
|
|
3 package DOM::Providers::Security;
|
|
4 use Security;
|
|
5
|
|
6 sub GetProviderInfo {
|
|
7 return {
|
|
8 Name => 'Security',
|
|
9 Host => 'DOM::Site',
|
|
10 Objects => {
|
|
11 Session => \&GetSession
|
|
12 }
|
|
13 }
|
|
14 }
|
|
15
|
|
16 sub GetSession {
|
|
17 return Security->CurrentSession;
|
|
18 }
|
|
19 1;
|