Mercurial > pub > Impl
view Lib/IMPL/Security/AbstractPrincipal.pm @ 402:b79081b70a7a
fixed error handler templates env
author | cin |
---|---|
date | Mon, 19 May 2014 18:33:52 +0400 |
parents | 16ff604298c7 |
children |
line wrap: on
line source
package IMPL::Security::AbstractPrincipal; use strict; use parent qw(IMPL::Class::Meta); use IMPL::Const qw(:prop); __PACKAGE__->static_accessor_clone(abstractProps => [ name => PROP_RW, description => PROP_RW ]); sub isNobody { } 1;