comparison lib/IMPL/Security/AbstractPrincipal.pm @ 407:c6e90e02dd17 ref20150831

renamed Lib->lib
author cin
date Fri, 04 Sep 2015 19:40:23 +0300
parents
children
comparison
equal deleted inserted replaced
406:f23fcb19d3c1 407:c6e90e02dd17
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