Mercurial > pub > Impl
annotate lib/IMPL/Security/Rule/RoleCheck.pm @ 420:df591e3afd10 ref20150831
sync
| author | cin |
|---|---|
| date | Sat, 25 Feb 2017 22:35:26 +0300 |
| parents | c6e90e02dd17 |
| 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; |
