br.com.progolden.dneutils.model.Bairro 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_bairro")
@Table(name="dne_bairro")
public class Bairro implements EntityIF {
private static final long serialVersionUID = 1L;
@Id
@Column(name="bai_nu", nullable=false)
private Long id;
@Column(name="ufe_sg", length=2, nullable=false)
private String estado;
@JoinColumn(name="loc_nu")
@ManyToOne(targetEntity=Localidade.class, fetch=FetchType.EAGER, optional=false)
private Localidade localidade;
@Column(name="bai_no", length=72, nullable=false)
private String nome;
@Column(name="bai_no_abrev", length=72)
private String abreviacao;
public Bairro() {}
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 Localidade getLocalidade() {
return localidade;
}
public void setLocalidade(Localidade localidade) {
this.localidade = localidade;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getAbreviacao() {
return abreviacao;
}
public void setAbreviacao(String abreviacao) {
this.abreviacao = abreviacao;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
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;
Bairro other = (Bairro) obj;
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;
}
}