Mercurial > pub > Impl
annotate Lib/IMPL/Security/Rule/RoleCheck.pm @ 176:74c27daf2e7b
minor changes
author | sergey |
---|---|
date | Wed, 05 Oct 2011 16:23:45 +0400 |
parents | 79bf75223afe |
children | 4d0e1962161c |
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 | |
94 | 8 my $roleEffective = new IMPL::Security::Role ( _effective => $context->rolesAssigned ); |
51 | 9 |
10 return $roleEffective->Satisfy(ExtractRoles($object)); | |
11 } | |
12 | |
13 sub _ExtractRoles { | |
14 return (); | |
15 } | |
16 |