Mercurial > pub > Impl
annotate Lib/IMPL/Security/Auth/AuthResult.pm @ 53:cf23fd8423f4
minor changes
author | wizard |
---|---|
date | Tue, 02 Mar 2010 02:57:09 +0300 |
parents | a1498298d3ee |
children |
rev | line source |
---|---|
51 | 1 package IMPL::Security::Auth::Result; |
2 use strict; | |
3 | |
4 use base qw(IMPL::Object); | |
5 use IMPL::Class::Property; | |
6 use IMPL::Class::Property::Direct; | |
7 | |
8 BEGIN { | |
9 public _direct property State => prop_get; | |
10 public _direct property ClientSecData => prop_get; | |
11 public _direct property AuthMod => prop_get; | |
12 } | |
13 | |
14 | |
15 1; |