| Rubric documentation | view source | Contained in the Rubric distribution. |
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 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.
| Rubric documentation | view source | Contained in the Rubric distribution. |