Authen::PAAS::Credential - represents a credential for a subject


Authen-PAAS documentation  | view source Contained in the Authen-PAAS distribution.

Index


NAME

Top

Authen::PAAS::Credential - represents a credential for a subject

SYNOPSIS

Top

  use Authen::PAAS::Credential;

  my $cred = Authen::PAAS::Credential->new(name => "krb5ticket");

  print $cred->name, "\n";

DESCRIPTION

Top

The Authen::PAAS::Credential module represents a credential for an authenticated subject. A credential is merely an abstract token generated during the authentication process. This module would be subclassed by Authen::PAAS::LoginModule implementations to provide module specific data.

METHODS

Top

$cred = Authen::PAAS::Credential->new(name => $name);

Create a new credential assigning it the name given by the name parameter to the method. This constructor is usually only used by sub-classes.

$name = $cred->name;

Retrieves the name of this credential.

AUTHORS

Top

Daniel Berrange <dan@berrange.com>

COPYRIGHT

Top

SEE ALSO

Top

Authen::PAAS::Subject, Authen::PAAS::Principal


Authen-PAAS documentation  | view source Contained in the Authen-PAAS distribution.