
Rubric::WebApp::Session - the Rubric session plugin

version 0.151

These methods are imported into the using class and should be called on an object of that type -- here, a Rubric::WebApp.
This returns the session, a hashref.
This returns a Crypt::CBC object for handling ciphering.
This gets the cookie and returns the payload as a R::WA::Session::Object.
This method writes the session data back out to a cookie entry.

This makes a new session object. You don't need this.
$obj->param('foo'); # get
$obj->param('foo', 'val'); # set
$obj->clear('name');
Clear the entry (delete it entirely) from the session.
$session->delete;
Removes all data from the session.
This returns a hashref containing the session data.

Ricardo SIGNES <rjbs@cpan.org>

This software is copyright (c) 2004 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.