Package com.iizix.authentication
Class GenericAuthenticationInfo
- java.lang.Object
-
- com.iizix.authentication.GenericAuthenticationInfo
-
public class GenericAuthenticationInfo extends java.lang.Object
The generic user authentication information contains at least the basic user ID and/or user name (if they are the same) and a password in an un-encrypted string. This class instance is not indented be be long-lived.NB: this class is not complete yet and may change at any time!
- Author:
- Christopher Mindus
-
-
Constructor Summary
Constructors Constructor Description GenericAuthenticationInfo()
-
-
-
Field Detail
-
userName
public java.lang.String userName
The user name in readable form (perhaps the same as the userID).
-
userID
public java.lang.String userID
The user ID, if different when performing a login. This member is equal to theuserName
if not specified.
-
password
public char[] password
The password for the user in clear text.
-
-