Catalyst::Authentication::User::Hash - An easy authentication user object based on hashes.
Contents
Description
This implementation of authentication user handles is supposed to go hand in hand with
Catalyst::Authentication::Store::Minimal.
Methods
new(@pairs)
Create a new object with the key-value-pairs listed in the arg list.
supports()
Checks for existence of keys that correspond with features.
for_session()
Just returns $self, expecting it to be serializable.
from_session()
Just passes returns the unserialized object, hoping it's intact.
AUTOLOAD()
Accessor for the key whose name is the method.
store()
Accessors that override superclass's dying virtual methods.
id()can()Name
Catalyst::Authentication::User::Hash - An easy authentication user object based on hashes.
See Also
Hash::AsObject
perl v5.40.0 2024-10-28 Catalyst::Authe...ion::User::Hash(3pm)
Synopsis
use Catalyst::Authentication::User::Hash;
Catalyst::Authentication::User::Hash->new(
password => "s3cr3t",
);
