Mercurial > pub > Impl
annotate Lib/IMPL/Security/Rule/RoleCheck.pm @ 347:3eafa6fefa9f
sync
author | cin |
---|---|
date | Mon, 30 Sep 2013 17:36:17 +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; |