Mercurial > pub > Impl
annotate Lib/IMPL/Security/Principal.pm @ 48:1c3c3e63a314
security in progress
author | Sergey |
---|---|
date | Fri, 26 Feb 2010 01:43:42 +0300 |
parents | a9b70d836b28 |
children | 16ada169ca75 |
rev | line source |
---|---|
47 | 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 | |
48 | 13 my $nobody; |
47 | 14 |
48 | 15 sub nobody { |
16 $nobody = $_[0]->new(Name => 'nobody', Description => '') unless $nobody; | |
17 return $nobody; | |
18 } | |
47 | 19 |
20 1; |