Skip to content
Snippets Groups Projects

Sso live

20 files
+ 1470
1
Compare changes
  • Side-by-side
  • Inline

Files

package nl.tudelft.ewi.tam.beans;
/**
* This class represents an user.
*/
@SuppressWarnings("PMD.ShortClassName")
public class QueueOurUser {
/**
* The {@link Integer} instance representing the unique identifier of the user.
*/
private int userId;
/**
* Properties of the user.
*/
private String firstName,
lastName,
gender,
netid,
email,
tshirtSize;
/**
* Instantiate a new QueueOurUser instance.
* @param userId the unique identifier of an user
* @param firstName the first name of the user
* @param lastName the last name of the user
* @param gender the gender of the user
* @param netid the netid of the user
* @param email the email of the user
* @param tshirtSize the tshirt size of the user
*/
public QueueOurUser(final int userId, final String firstName, final String lastName, final String gender,
final String netid, final String email, final String tshirtSize) {
this.userId = userId;
this.firstName = firstName;
this.lastName = lastName;
this.gender = gender;
this.netid = netid;
this.email = email;
this.tshirtSize = tshirtSize;
}
/**
* Gets netid.
*
* @return Value of netid.
*/
public String getNetid() {
return netid;
}
/**
* Sets new netid.
*
* @param netid New value of netid.
*/
public void setNetid(final String netid) {
this.netid = netid;
}
/**
* Gets gender.
*
* @return Value of gender.
*/
public String getGender() {
return gender;
}
/**
* Sets new userId.
*
* @param userId New value of userId.
*/
public void setUserId(final int userId) {
this.userId = userId;
}
/**
* Gets userId.
*
* @return Value of userId.
*/
public int getUserId() {
return userId;
}
/**
* Sets new email.
*
* @param email New value of email.
*/
public void setEmail(final String email) {
this.email = email;
}
/**
* Gets tshirtSize.
*
* @return Value of tshirtSize.
*/
public String getTshirtSize() {
return tshirtSize;
}
/**
* Gets email.
*
* @return Value of email.
*/
public String getEmail() {
return email;
}
/**
* Gets firstName.
*
* @return Value of firstName.
*/
public String getFirstName() {
return firstName;
}
/**
* Sets new firstName.
*
* @param firstName New value of firstName.
*/
public void setFirstName(final String firstName) {
this.firstName = firstName;
}
/**
* Gets lastName.
*
* @return Value of lastName.
*/
public String getLastName() {
return lastName;
}
/**
* Sets new lastName.
*
* @param lastName New value of lastName.
*/
public void setLastName(final String lastName) {
this.lastName = lastName;
}
/**
* Sets new gender.
*
* @param gender New value of gender.
*/
public void setGender(final String gender) {
this.gender = gender;
}
/**
* Sets new tshirtSize.
*
* @param tshirtSize New value of tshirtSize.
*/
public void setTshirtSize(final String tshirtSize) {
this.tshirtSize = tshirtSize;
}
}
Loading