Package edu.wisc.game.sql
Class User
java.lang.Object
edu.wisc.game.reflect.OurTable
edu.wisc.game.sql.User
@Entity public class User extends OurTable
Information about a repeat user (who may own multiple playerId) stored in the SQL database.
-
Constructor Summary
Constructors Constructor Description User()
-
Method Summary
Modifier and Type Method Description void
addRole(Role r)
static String
buildCodeId(String prefix, Date now)
Creates a more or less unique ID that can be used as a "secret ID" for a User objectvoid
encryptAndSetPassword(String clearPassword)
Encrypts the passed password, and stores the encrypted value.static User
findByName(javax.persistence.EntityManager em, String nickname)
Can be used instead of (User)em.find(User.class, un);Date
getDate()
String
getDigest()
Encrypted password (or, more precisely, the MD5 digest of the password).String
getEmail()
long
getId()
String
getIdCode()
String
getNickname()
Set<Role>
getRoles()
boolean
hasAnyRole(Role.Name[] names)
Does this user have any of the roles in the specifed list?boolean
hasRole(Role.Name name)
boolean
isMlc()
Does this user have the "researcher" role?String
listRoles()
boolean
passwordMatches(String clearPassword)
void
removeRole(Role r)
void
setDate(Date _date)
void
setDigest(String x)
void
setEmail(String _email)
void
setId(long _id)
void
setIdCode(String _idCode)
void
setNickname(String _nickname)
String
toString()
-
Constructor Details
-
User
public User()
-
-
Method Details
-
getId
public long getId() -
setId
public void setId(long _id) -
getNickname
-
setNickname
-
getEmail
-
setEmail
-
getIdCode
-
setIdCode
-
getDate
-
setDate
-
getDigest
Encrypted password (or, more precisely, the MD5 digest of the password). If an empty string is stored here, AND the user has roles that require a password, it means that the entry is disabled, because the digest of any string is a non-empty string. -
setDigest
-
encryptAndSetPassword
Encrypts the passed password, and stores the encrypted value. This enables the user for logging in -
passwordMatches
-
toString
-
findByName
Can be used instead of (User)em.find(User.class, un);- Returns:
- The User object with the matching name, or null if none is found
-
getRoles
-
addRole
-
removeRole
-
hasRole
-
hasAnyRole
Does this user have any of the roles in the specifed list?- Parameters:
names
- An array of roles. It must be non-null, but may be empty (in which case, of course, false will be returned).- Returns:
- True if the user has any of the listed roles.
-
isMlc
public boolean isMlc()Does this user have the "researcher" role? -
listRoles
-
buildCodeId
Creates a more or less unique ID that can be used as a "secret ID" for a User object
-