package br.com.cadastropessoal.vo; import java.util.ArrayList; import java.util.List; public class UserVO { private long userId; private String firstName; private String middleName; private String lastName; private String cpf; private String email; private String password; private String birthDate; private String registerDate; private List<String> telephones; public UserVO(){ userId = 0; firstName = new String(); lastName = new String(); middleName = new String(); cpf = new String(); email = new String(); password = new String(); birthDate = new String(); registerDate = new String(); telephones = new ArrayList<String>(); } public long getUserId() { return userId; } public void setUserId(long userId) { this.userId = userId; } public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getMiddleName() { return middleName; } public void setMiddleName(String middleName) { this.middleName = middleName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public String getCpf() { return cpf; } public void setCpf(String cpf) { this.cpf = cpf; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getBirthDate() { return birthDate; } public void setBirthDate(String birthDate) { this.birthDate = birthDate; } public String getRegisterDate() { return registerDate; } public void setRegisterDate(String registerDate) { this.registerDate = registerDate; } public List<String> getTelephones() { return telephones; } public void setTelephones(List<String> telephones) { this.telephones = telephones; } }