Mercurial > pub > Impl
diff Lib/IMPL/Security.pm @ 95:67eb8eaec3d4
Added a security authority property to the Context and Security classes
Added a WriteResponse method to the SecureCookie class
Added a setCookie method to the Response class
author | wizard |
---|---|
date | Thu, 29 Apr 2010 02:21:27 +0400 |
parents | 84aa8c395fce |
children | 4267a2ac3d46 |
line wrap: on
line diff
--- a/Lib/IMPL/Security.pm Thu Apr 29 01:31:27 2010 +0400 +++ b/Lib/IMPL/Security.pm Thu Apr 29 02:21:27 2010 +0400 @@ -6,6 +6,8 @@ \&IMPL::Security::Rule::RoleCheck::SatisfyAll ); +our $authority = undef; + sub AccessCheck { my ($self, $object, $desiredAccess, $context) = @_; @@ -36,6 +38,10 @@ return \@rules; } +sub authority { + return $authority; +} + 1; __END__ @@ -202,6 +208,11 @@ =end code +=item C<[static,get] authority> + +Метод, позволяющий получить текущий источник системы безопасности. Источник безопасности, это модуль, +который получает входные данные и использует их для работы системы безопасности. + =back =cut \ No newline at end of file