annotate lib/IMPL/Security/AbstractPrincipal.pm @ 412:30e8c6a74937
ref20150831
working on di container (role based registrations)
author |
cin |
date |
Mon, 21 Sep 2015 19:54:10 +0300 |
parents |
c6e90e02dd17 |
children |
|
rev |
line source |
407
|
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 sub isNobody {
|
|
14
|
|
15 }
|
|
16
|
|
17 1;
|
|
18
|