diff Lib/IMPL/Security/Auth/AuthResult.pm @ 51:a1498298d3ee

Security in progress
author wizard@linux-odin.local
date Mon, 01 Mar 2010 17:25:36 +0300
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Lib/IMPL/Security/Auth/AuthResult.pm	Mon Mar 01 17:25:36 2010 +0300
@@ -0,0 +1,15 @@
+package IMPL::Security::Auth::Result;
+use strict;
+
+use base qw(IMPL::Object);
+use IMPL::Class::Property;
+use IMPL::Class::Property::Direct;
+
+BEGIN {
+    public _direct property State => prop_get;
+    public _direct property ClientSecData => prop_get;
+    public _direct property AuthMod => prop_get;
+}
+
+
+1;