public class User extends Object implements Serializable
| Constructor and Description |
|---|
User() |
| Modifier and Type | Method and Description |
|---|---|
int |
getAccessLevel()
Returns the access level of the user.
|
int |
getCenter()
Returns the user's center.
|
Date |
getDateCreated()
Returns date the user was created.
|
Date |
getDateModified()
Returns date the user's account was last modified.
|
String |
getEmailAddress()
Returns the email address of the user (mutable/unique to each user).
|
String |
getFullName()
Returns the full name of the user.
|
String |
getPassword()
Returns the user's password.
|
int |
getSubCenter()
Returns the user's sub center.
|
int |
getUserId()
Returns the id of the user in the database (immutable/unique to each user).
|
String |
getUserName()
Returns the user name of the user (immutable/unique to each user).
|
void |
setAccessLevel(int accessLevel)
Sets the access level of the user.
|
void |
setCenter(int center)
Sets the user's center.
|
void |
setDateCreated(Date dateCreated)
Sets the date the user was created.
|
void |
setDateModified(Date dateModified)
Sets the date the user's account was last modified.
|
void |
setEmailAddress(String emailAddress)
Sets the email address of the user (mutable/unique to each user).
|
void |
setFullName(String fullName)
Sets the full name of the user.
|
void |
setPassword(String password)
Sets the user's password.
|
void |
setSubCenter(int subCenter)
Sets the user's sub enter.
|
void |
setUserId(int userId)
Sets the id of the user in the database (immutable/unique to each user).
|
void |
setUserName(String userName)
Sets the user name of the user (immutable/unique to each user).
|
public int getUserId()
public void setUserId(int userId)
userId - The user id.public String getUserName()
public void setUserName(String userName)
userName - The user's user name.public String getPassword()
public void setPassword(String password)
password - The user's password.public int getAccessLevel()
public void setAccessLevel(int accessLevel)
accessLevel - The user's access level.public String getEmailAddress()
public void setEmailAddress(String emailAddress)
emailAddress - The user's email address.public String getFullName()
public void setFullName(String fullName)
fullName - The user's full name.public int getCenter()
public void setCenter(int center)
center - The user's center.public int getSubCenter()
public void setSubCenter(int subCenter)
subCenter - The user's sub center.public Date getDateCreated()
public void setDateCreated(Date dateCreated)
dateCreated - The user's creation date.public Date getDateModified()
public void setDateModified(Date dateModified)
dateModified - The user account last modified date.Copyright © 1999–2013 UCAR/Unidata. All rights reserved.