Mercurial > pub > Impl
view Lib/IMPL/Security/Principal.pm @ 246:2746a8e5a6c4
Fixed regressions in DOM due previous refactorings
Fixed ObjectToDOM transformation to handle a schema with mixed node types
author | sergey |
---|---|
date | Tue, 30 Oct 2012 01:17:31 +0400 |
parents | 6d8092d8ce1b |
children | 16ff604298c7 |
line wrap: on
line source
package IMPL::Security::Principal; use strict; use warnings; use IMPL::Const qw(:prop); use IMPL::require { AbstractPrincipal => 'IMPL::Security::AbstractPrincipal' }; use IMPL::declare { base => [ 'IMPL::Object' => undef, 'IMPL::Object::Autofill' => '@_', 'IMPL::Security::AbstractPrincipal' => undef ], props => [ @{AbstractPrincipal->abstractProps()} ] }; __PACKAGE__->abstractProps([]); my $nobody; sub nobody { $nobody = $_[0]->new(name => 'nobody', description => '') unless $nobody; return $nobody; } 1; __END__ =pod =head1 NAME C<IMPL::Security::Principal> Идентификатор пользователя C<[Autofill]> =head1 MEMBERS =over =item C<CTOR(%props)> Создает новый объект. =item C<[get] name> Возвращает имя пользователя. =item C<[get,set] description> Возвращает описание пользователя. =back =cut