Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.med.pbm.ampl.model;
import java.io.Serializable;
import org.springframework.lang.Nullable;
/**
* This class consists of properties representing a user identity.
*
* @author Ian Meinert
* @since 1.0
*/
public class UserIdentity implements Serializable {
private static final long serialVersionUID = -7788619177798333712L;
/**
* The user id
*/
private Long userId;
/**
* The name of the user
*/
private String userName;
/**
* The id of the site
*/
@Nullable
private Long siteId;
/**
* The name of the site
*/
private String siteName;
/**
* The getter for the userId.
*
* @return the id of the user
*/
public Long getUserId() {
return userId;
}
/**
* The setter for the userId.
*
* @param userId the id of the user
*
*/
public void setUserId(Long userId) {
this.userId = userId;
}
/**
* The getter for the userName.
*
* @return the user name
*/
public String getUserName() {
return userName;
}
/**
* The setter for the userName.
*
* @param userName the user name
*
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* the getter for the siteId.
*
* @return the site Id
*/
public Long getSiteId() {
return siteId;
}
/**
* The setter for the siteId.
*
* @param siteId the site id
*
*/
public void setSiteId(Long siteId) {
this.siteId = siteId;
}
/**
* The getter for the siteName.
*
* @return the site name
*/
public String getSiteName() {
return siteName;
}
/**
* The setter for the siteName.
*
* @param siteName the site name
*
*/
public void setSiteName(String siteName) {
this.siteName = siteName;
}
}