br.com.progolden.dneutils.model.CaixaPostalComunitaria Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dne-utils Show documentation
Show all versions of dne-utils Show documentation
Biblioteca de utilitários para trabalhar com a base e-DNE dos Correios.
The newest version!
/*
Copyright 2014 ProGolden Soluções Tecnológicas
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package br.com.progolden.dneutils.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import br.com.progolden.dneutils.abstractions.EntityIF;
@Entity(name="dne_cpc")
@Table(name="dne_cpc")
public class CaixaPostalComunitaria implements EntityIF {
private static final long serialVersionUID = 1L;
@Id
@Column(name="cpc_nu", nullable=false)
private Long id;
@Column(name="ufe_sg", length=2, nullable=false)
private String estado;
@Column(name="cpc_no", length=72, nullable=false)
private String nome;
@Column(name="cpc_endereco", length=100, nullable=false)
private String endereco;
@Column(name="cep", length=8, nullable=false, unique=true)
private String cep;
@JoinColumn(name="loc_nu")
@ManyToOne(targetEntity=Localidade.class, fetch=FetchType.EAGER, optional=false)
private Localidade localidade;
public CaixaPostalComunitaria() {}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getEstado() {
return estado;
}
public void setEstado(String estado) {
this.estado = estado;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getEndereco() {
return endereco;
}
public void setEndereco(String endereco) {
this.endereco = endereco;
}
public String getCep() {
return cep;
}
public void setCep(String cep) {
this.cep = cep;
}
public Localidade getLocalidade() {
return localidade;
}
public void setLocalidade(Localidade localidade) {
this.localidade = localidade;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((cep == null) ? 0 : cep.hashCode());
result = prime * result + ((estado == null) ? 0 : estado.hashCode());
result = prime * result + ((id == null) ? 0 : id.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;
CaixaPostalComunitaria other = (CaixaPostalComunitaria) obj;
if (cep == null) {
if (other.cep != null)
return false;
} else if (!cep.equals(other.cep))
return false;
if (estado == null) {
if (other.estado != null)
return false;
} else if (!estado.equals(other.estado))
return false;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}