Mercurial > pub > Impl
annotate lib/IMPL/Security/Rule/RoleCheck.pm @ 407:c6e90e02dd17 ref20150831
renamed Lib->lib
author | cin |
---|---|
date | Fri, 04 Sep 2015 19:40:23 +0300 |
parents | |
children |
rev | line source |
---|---|
407 | 1 package IMPL::Security::Rule::RoleCheck; |
2 use strict; | |
3 | |
4 require IMPL::Security::Role; | |
5 | |
6 sub SatisfyAll { | |
7 my ($secPackage,$object,$desiredAccess,$context) = @_; | |
8 | |
9 my $roleEffective = new IMPL::Security::Role ( _effective => $context->rolesAssigned ); | |
10 | |
11 return $roleEffective->Satisfy(ExtractRoles($object)); | |
12 } | |
13 | |
14 sub _ExtractRoles { | |
15 return (); | |
16 } | |
17 | |
18 1; |