Business::BancaSella::Ric - Parent class for extracting One-Time-Password from different


Business-BancaSella documentation  | view source Contained in the Business-BancaSella distribution.

Index


NAME

Top

Business::BancaSella::Ric - Parent class for extracting One-Time-Password from different storage place

SYNOPSIS

Top

Currently supported file, fileFast and mysql storage.

For file storage use:

  use Business::BancaSella::Ric;

  my $ric = new Business::BancaSella::Ric(
  				type 		=> 'file',
  				file 		=> 'filePath/filename.ric');
  my $otp = $ric->extract;

For file fast storage use:

  use Business::BancaSella::Ric;

  my $ric = new Business::BancaSella::Ric(
  				type 		=> 'filefast',
  				file 		=> 'filePath/filename.ric');
  my $otp = $ric->extract;

For Mysql database use:

  use Business::BancaSella::Ric;

  my $ric = new Business::BancaSella::Ric(
  				type 		=> 'mysql',
  				dbh		=> $DBI_handle,
				tableName	=> $table_with_otp,
				fieldName	=> $field_with_otp);
  my $otp = $ric->extract;

DESCRIPTION

Top

This module extract an One-Time-Password from a system storage place. Currently are supported only file, fileFast and mysql location for OTP.

AUTHOR

Top

Bruni Emiliano, info@ebruni.it

SEE ALSO

Top

  Business::BancaSella::Ric::File
  Business::BancaSella::Ric::Mysql


Business-BancaSella documentation  | view source Contained in the Business-BancaSella distribution.