NAME
OpenFrame::WebApp::Session::Factory - a factory for various types of session wrappers.
SYNOPSIS
use OpenFrame::WebApp::Session::Factory;
my $sfactory = new OpenFrame::WebApp::Session::Factory()
->type( 'file_cache' )
->expiry( $period ); # optional
my $session = $sfactory->new_session( @args );
my $session = $sfactory->fetch_session( $id );
DESCRIPTION
The OpenFrame::WebApp::Session::Factory
class should be used to create sessions as needed. For convenience, it lets you specify a default session expiry period that is passed to all new sessions.
This class inherits its interface from OpenFrame::WebApp::Factory
. It uses OpenFrame::WebApp::Session-
types()> to resolve class names.
ADDITIONAL METHODS
- expiry()
-
set/get optional session expiry.
- new_session( ... )
-
creates a new session wrapper of the appropriate
session_type
and sets its expiry() (if set). passes all arguments to the sessions' constructor. - fetch_session( $id )
-
fetches the session with the given $id. returns undef if not found.
AUTHOR
Steve Purkis <spurkis@epn.nu>
COPYRIGHT
Copyright (c) 2003 Steve Purkis. All rights reserved. Released under the same license as Perl itself.