CGI::Application::Plugin::Authentication::Store 0.11 review
DownloadCGI::Application::Plugin::Authentication::Store is a base module for building storage classes for the CGI::Application::Plugin::Authe
|
|
CGI::Application::Plugin::Authentication::Store is a base module for building storage classes for the CGI::Application::Plugin::Authentication plugin.
SYNOPSIS
package CGI::Application::Plugin::Authentication::Store::MyStore;
use base qw(CGI::Application::Plugin::Authentication::Store);
sub fetch {
my $self = shift;
my @params = @_;
...
}
sub save {
my $self = shift;
my %params = @_;
...
}
sub delete {
my $self = shift;
my @params = @_;
...
}
This module is a base class for all storage classes for the CGI::Application::Plugin::Authentication plugin. Each storage class is required to provide three methods that fetch, save and delete data from the store. The information that is saved will be text based, so there is no need to flatten any of the data that is to be stored.
Requirements:
Perl
CGI::Application::Plugin::Authentication::Store 0.11 keywords