view Lib/IMPL/Web/Security/Session.pm @ 91:9cb8e730fa86

fixed factory
author wizard
date Mon, 26 Apr 2010 17:46:16 +0400 (2010-04-26)
parents f017c0d7527c
children 4267a2ac3d46
line wrap: on
line source
package IMPL::Web::Security::Session;
use strict;
use base qw(IMPL::Security::Context);

use IMPL::Class::Property;

__PACKAGE__->PassThroughArgs;

BEGIN {
	public property id => prop_all | owner_set;
}

1;

__END__

=pod

=head1 NAME

C<IMPL::Web::Security::Session> - ������ ������������.

=head1 SINOPSYS

=begin code

# define a custom session for the application

package App::Session;
use base qw(IMPL::Web::Security::Session);

use IMPL::Class::Property;

BEGIN {
	public property transactionId => prop_all;
}

=end code

=head1 DESCRIPTION

C<use base qw(IMPL::Security::Context)>

������������ ����� �������� ������������, ����� �������������. �������� ������� �������
��� ���������� ��������������� ����������.

=head1 MEMBERS

=over

=item C<[get] id>

������������� ������

=back

=cut