annotate lib/IMPL/Security/AbstractPrincipal.pm @ 422:b0481c071bea
 ref20150831 
IMPL::Config::Container tests, YAMLConfiguration now works and tested
 | author | 
 cin | 
 | date | 
 Sun, 20 Aug 2017 00:20:41 +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 
 |