private String lastName;
private Long dateCreated;
// Constructors
/**defaultconstructor*/
public AbstractUser() {
}
/**fullconstructor*/
public AbstractUser(Integer id, String username, String password,
String firstName, String lastName, Long dateCreated) {
this.id = id;
this.username = username;
this.password = password;
this.firstName = firstName;
this.lastName = lastName;
this.dateCreated = dateCreated;
}
// Property accessors
public Integer getId() {
returnthis.id;
}
publicvoid setId(Integer id) {
this.id = id;
}
public String getUsername() {