Mercurial > pub > Impl
annotate Lib/IMPL/Security/AbstractPrincipal.pm @ 406:f23fcb19d3c1 ref20150831
implemented ServicesBag
author | cin |
---|---|
date | Mon, 31 Aug 2015 20:22:16 +0300 |
parents | 16ff604298c7 |
children |
rev | line source |
---|---|
230 | 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 | |
401 | 13 sub isNobody { |
14 | |
15 } | |
16 | |
230 | 17 1; |
18 |