| java.lang.Object com.caucho.server.security.PasswordUser
PasswordUser | public class PasswordUser (Code) | | PasswordUser is used by PasswordAuthenticator implementations.
|
PasswordUser | public PasswordUser(Principal principal, char[] password, boolean isDisabled, boolean isAnonymous, String[] roles)(Code) | | |
PasswordUser | public PasswordUser(String user, char[] password)(Code) | | |
clearPassword | public void clearPassword()(Code) | | Clears the password
|
getPassword | public char[] getPassword()(Code) | | Returns the password
|
getPrincipal | public Principal getPrincipal()(Code) | | Returns the logged-in user principal
|
getRoles | public String[] getRoles()(Code) | | Returns the user's roles
|
isAnonymous | public boolean isAnonymous()(Code) | | Returns true if the user is anonymous, i.e. no password
|
isDisabled | public boolean isDisabled()(Code) | | Returns true if the user is disabled
|
|
|