annotate Lib/IMPL/Security/Rule/RoleCheck.pm @ 90:dc1da0389db7
Small improvements in the abstract object class
Added support for a class data, documentation
Additional tests for the new functionality
author |
wizard |
date |
Mon, 26 Apr 2010 03:10:03 +0400 |
parents |
a1498298d3ee |
children |
79bf75223afe |
rev |
line source |
51
|
1 package IMPL::Security::Rule::RoleCheck;
|
|
2
|
|
3 require IMPL::Security::Role;
|
|
4
|
|
5 sub SatisfyAll {
|
|
6 my ($secPackage,$object,$desiredAccess,$context) = @_;
|
|
7
|
|
8 my $roleEffective = new IMPL::Security::Role ( effective => $context->AssignedRoles );
|
|
9
|
|
10 return $roleEffective->Satisfy(ExtractRoles($object));
|
|
11 }
|
|
12
|
|
13 sub _ExtractRoles {
|
|
14 return ();
|
|
15 }
|
|
16
|