Mercurial > pub > Impl
annotate Lib/IMPL/Security/Principal.pm @ 60:b0c068da93ac
Lazy activation for the configuration objects (final concept)
small fixes
author | wizard |
---|---|
date | Tue, 09 Mar 2010 19:47:39 +0300 |
parents | 16ada169ca75 |
children | 84aa8c395fce |
rev | line source |
---|---|
49 | 1 package IMPL::Security::Principal; |
2 use strict; | |
3 use warnings; | |
4 | |
5 use base qw(IMPL::Object); | |
6 use IMPL::Class::Property; | |
7 | |
8 BEGIN { | |
9 public property Name => prop_get; | |
10 public property Description => prop_get; | |
11 } | |
12 | |
13 my $nobody; | |
14 | |
15 sub nobody { | |
16 $nobody = $_[0]->new(Name => 'nobody', Description => '') unless $nobody; | |
17 return $nobody; | |
18 } | |
19 | |
20 1; |