/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package net.paulgray.lmsrest.user;
import java.util.Date;
/**
*
* @author pfgray
*/
public class User {
protected String id;
protected String username;
protected String firstName;
protected String lastName;
protected String mi;
protected Date lastLogin;
protected Date birthDate;
protected String systemRole;
protected String email;
protected String locale;
public User() {
}
public User(String id, String username, String firstName, String lastName, String mi, Date lastLogin, Date birthDate, String systemRole, String email, String locale) {
this.id = id;
this.username = username;
this.firstName = firstName;
this.lastName = lastName;
this.mi = mi;
this.lastLogin = lastLogin;
this.birthDate = birthDate;
this.systemRole = systemRole;
this.email = email;
this.locale = locale;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getMi() {
return mi;
}
public void setMi(String mi) {
this.mi = mi;
}
public Date getLastLogin() {
return lastLogin;
}
public void setLastLogin(Date lastLogin) {
this.lastLogin = lastLogin;
}
public Date getBirthDate() {
return birthDate;
}
public void setBirthDate(Date birthDate) {
this.birthDate = birthDate;
}
public String getSystemRole() {
return systemRole;
}
public void setSystemRole(String systemRole) {
this.systemRole = systemRole;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getLocale() {
return locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
}