br.com.utfpr.porta.modelo.Pessoa Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tcc-porta-servico Show documentation
Show all versions of tcc-porta-servico Show documentation
Projeto serviço que realiza acesso ao banco de dados para o projeto API e web
The newest version!
package br.com.utfpr.porta.modelo;
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.PostLoad;
import javax.persistence.PrePersist;
import javax.persistence.PreUpdate;
import javax.persistence.Table;
import javax.validation.constraints.NotNull;
import org.hibernate.validator.constraints.NotBlank;
import org.hibernate.validator.constraints.br.CNPJ;
import org.hibernate.validator.constraints.br.CPF;
import org.hibernate.validator.group.GroupSequenceProvider;
import org.springframework.format.annotation.DateTimeFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import br.com.utfpr.porta.modelo.serializacao.LocalDateSerializador;
import br.com.utfpr.porta.modelo.validacao.PessoaGroupSequenceProvider;
import br.com.utfpr.porta.modelo.validacao.grupo.CnpjGroup;
import br.com.utfpr.porta.modelo.validacao.grupo.CpfGroup;
@Entity
@Table(name = "pessoa")
@GroupSequenceProvider(PessoaGroupSequenceProvider.class)
public class Pessoa implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long codigo;
@NotBlank(message = "Nome é obrigatório")
private String nome;
@NotNull(message = "Tipo pessoa é obrigatório")
@Enumerated(EnumType.STRING)
@Column(name = "tipo_pessoa")
private TipoPessoa tipoPessoa;
@NotBlank(message = "CPF/CNPJ é obrigatório")
@CPF(groups = CpfGroup.class)
@CNPJ(groups = CnpjGroup.class)
@Column(name = "cpf_cnpj")
private String cpfOuCnpj;
@Enumerated(EnumType.STRING)
private Genero genero;
private String telefone;
@DateTimeFormat(pattern = "dd/MM/yyyy")
@Column(name = "data_nascimento")
@JsonSerialize(using = LocalDateSerializador.class)
private LocalDate dataNascimento;
@Column(name = "data_hora_criacao", updatable=false)
private LocalDateTime dataHoraCriacao;
@Column(name = "data_hora_alteracao")
private LocalDateTime dataHoraAlteracao;
@PrePersist
private void prePersist() {
this.dataHoraCriacao = LocalDateTime.now();
this.dataHoraAlteracao = LocalDateTime.now();
this.cpfOuCnpj = TipoPessoa.removerFormatacao(this.cpfOuCnpj);
}
@PreUpdate
private void preUpdate() {
this.dataHoraAlteracao = LocalDateTime.now();
this.cpfOuCnpj = TipoPessoa.removerFormatacao(this.cpfOuCnpj);
}
@PostLoad
private void postLoad() {
this.cpfOuCnpj = this.tipoPessoa.formatar(this.cpfOuCnpj);
}
public boolean isNovo() {
return codigo == null;
}
public Long getCodigo() {
return codigo;
}
public void setCodigo(Long codigo) {
this.codigo = codigo;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public TipoPessoa getTipoPessoa() {
return tipoPessoa;
}
public void setTipoPessoa(TipoPessoa tipoPessoa) {
this.tipoPessoa = tipoPessoa;
}
public String getCpfOuCnpj() {
return cpfOuCnpj;
}
public void setCpfOuCnpj(String cpfOuCnpj) {
this.cpfOuCnpj = cpfOuCnpj;
}
public String getCpfOuCnpjSemFormatacao() {
return TipoPessoa.removerFormatacao(this.cpfOuCnpj);
}
public Genero getGenero() {
return genero;
}
public void setGenero(Genero genero) {
this.genero = genero;
}
public String getTelefone() {
return telefone;
}
public void setTelefone(String telefone) {
this.telefone = telefone;
}
public LocalDate getDataNascimento() {
return dataNascimento;
}
public void setDataNascimento(LocalDate dataNascimento) {
this.dataNascimento = dataNascimento;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((codigo == null) ? 0 : codigo.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Pessoa other = (Pessoa) obj;
if (codigo == null) {
if (other.codigo != null)
return false;
} else if (!codigo.equals(other.codigo))
return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy