CGI::Application::Plugin::Authentication::Store 0.11 review

Download
by rbytes.net on

CGI::Application::Plugin::Authentication::Store is a base module for building storage classes for the CGI::Application::Plugin::Authe

License: Perl Artistic License
File size: 46K
Developer: Cees Hek
0 stars award from rbytes.net

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 search tags