view Lib/IMPL/Security/AuthResult.pm @ 50:521c9c1a3ea1

:q
author wizard@linux-odin.local
date Sat, 27 Feb 2010 16:28:45 +0300
parents 16ada169ca75
children
line wrap: on
line source

package IMPL::Security::AuthResult;
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 Session => prop_get;
    public _direct property ClientSecData => prop_get;
    public _direct property AuthMod => prop_get;
}


1;