Mercurial > pub > Impl
comparison 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 |
comparison
equal
deleted
inserted
replaced
229:47f77e6409f7 | 230:6d8092d8ce1b |
---|---|
1 package IMPL::Security::AbstractPrincipal; | |
2 use strict; | |
3 | |
4 use parent qw(IMPL::Class::Meta); | |
5 | |
6 use IMPL::Const qw(:prop); | |
7 | |
8 __PACKAGE__->static_accessor_clone(abstractProps => [ | |
9 name => PROP_RW, | |
10 description => PROP_RW | |
11 ]); | |
12 | |
13 1; | |
14 |