| Authen-PAAS documentation | view source | Contained in the Authen-PAAS distribution. |
Authen::PAAS::Credential - represents a credential for a subject
use Authen::PAAS::Credential; my $cred = Authen::PAAS::Credential->new(name => "krb5ticket"); print $cred->name, "\n";
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.
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.
Retrieves the name of this credential.
Daniel Berrange <dan@berrange.com>
Copyright (C) 2004-2006 Daniel Berrange
| Authen-PAAS documentation | view source | Contained in the Authen-PAAS distribution. |