NAME

Egg::Model::Session::Store::UUencode - Encode processing of session data by UUencode.

SYNOPSIS

package MyApp::Model::Sesion::MySession;

__PACKAGE__->startup(
 .....
 Store::UUencode
 );

DESCRIPTION

It is a component to use it together with Base system component that cannot preserve the session data as it is.

To use it, 'Store::UUencode' is added to 'startup'.

__PACKAGE__->startup(
 Base::DBI
 Store::UUencode
 );

METHODS

store_encode

The result of passing the received session data through 'uuencode' of Convert::UU is returned by the SCALAR reference.

store_decode

The result of passing the received Base64 encode ending data through 'uudecode' of Convert::UU is returned.

SEE ALSO

Egg::Release, Egg::Model::Session::Manager::TieHash, Convert::UU, Storable,

AUTHOR

Masatoshi Mizuno <lushe@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2008 Bee Flag, Corp. <http://egg.bomcity.com/>, All Rights Reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.