FileDocCategorySizeDatePackage
AuthenticationRole.javaAPI DocExample849Mon Apr 03 19:32:00 BST 2000com.imaginary.lwp

AuthenticationRole

public class AuthenticationRole extends Object
A role used for authentication.
Last modified $Date: 1999/11/07 19:32:24 $
version
$Revision: 1.1 $
author
George Reese (borg@imaginary.com)

Fields Summary
private Object
credentials
The implementation-specific credentials that support this role. In its simplest form, this could be a role name. In a more complex form, it could be tied to the java.security package.
Constructors Summary
public AuthenticationRole(Object cred)
Constructs a new role using the specified credentials.

param
cred the credentials to use for the role


                          
       
        super();
        credentials = cred;
    
Methods Summary
public java.lang.ObjectgetCredentials()

return
the role credentials

        return credentials;