view 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 source

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;