Mercurial > pub > Impl
annotate Lib/IMPL/Security/Rule/RoleCheck.pm @ 261:93963ec449c5
sync
author | sergey |
---|---|
date | Fri, 28 Dec 2012 16:43:03 +0400 |
parents | 6d8092d8ce1b |
children |
rev | line source |
---|---|
51 | 1 package IMPL::Security::Rule::RoleCheck; |
230 | 2 use strict; |
51 | 3 |
4 require IMPL::Security::Role; | |
5 | |
6 sub SatisfyAll { | |
194 | 7 my ($secPackage,$object,$desiredAccess,$context) = @_; |
8 | |
9 my $roleEffective = new IMPL::Security::Role ( _effective => $context->rolesAssigned ); | |
10 | |
11 return $roleEffective->Satisfy(ExtractRoles($object)); | |
51 | 12 } |
13 | |
14 sub _ExtractRoles { | |
194 | 15 return (); |
51 | 16 } |
17 | |
230 | 18 1; |