Mercurial > pub > Impl
view Lib/IMPL/Security/Rule/RoleCheck.pm @ 54:f4e045e47770
commit
author | wizard@linux-odin.local |
---|---|
date | Tue, 02 Mar 2010 20:15:57 +0300 |
parents | a1498298d3ee |
children | 79bf75223afe |
line wrap: on
line source
package IMPL::Security::Rule::RoleCheck; require IMPL::Security::Role; sub SatisfyAll { my ($secPackage,$object,$desiredAccess,$context) = @_; my $roleEffective = new IMPL::Security::Role ( effective => $context->AssignedRoles ); return $roleEffective->Satisfy(ExtractRoles($object)); } sub _ExtractRoles { return (); }