Mercurial > pub > Impl
diff Lib/IMPL/Security/AbstractPrincipal.pm @ 230:6d8092d8ce1b
*reworked IMPL::Security
*reworked IMPL::Web::Security
*refactoring
author | sergey |
---|---|
date | Mon, 08 Oct 2012 03:37:37 +0400 |
parents | |
children | 16ff604298c7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Lib/IMPL/Security/AbstractPrincipal.pm Mon Oct 08 03:37:37 2012 +0400 @@ -0,0 +1,14 @@ +package IMPL::Security::AbstractPrincipal; +use strict; + +use parent qw(IMPL::Class::Meta); + +use IMPL::Const qw(:prop); + +__PACKAGE__->static_accessor_clone(abstractProps => [ + name => PROP_RW, + description => PROP_RW +]); + +1; +