br.com.utfpr.porta.modelo.AnuncioUsuarioId 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 javax.persistence.Embeddable;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.validation.constraints.NotNull;
@Embeddable
public class AnuncioUsuarioId implements Serializable {
private static final long serialVersionUID = 1L;
@NotNull(message = "Escolha um usuário")
@ManyToOne
@JoinColumn(name = "codigo_usuario")
private Usuario usuario;
@NotNull(message = "Escolha um anúncio")
@ManyToOne
@JoinColumn(name = "codigo_anuncio")
private Anuncio anuncio;
public AnuncioUsuarioId() {}
public AnuncioUsuarioId(Usuario usuario, Anuncio anuncio) {
super();
this.usuario = usuario;
this.anuncio = anuncio;
}
public Usuario getUsuario() {
return usuario;
}
public void setUsuario(Usuario usuario) {
this.usuario = usuario;
}
public Anuncio getAnuncio() {
return anuncio;
}
public void setAnuncio(Anuncio anuncio) {
this.anuncio = anuncio;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((anuncio == null) ? 0 : anuncio.hashCode());
result = prime * result + ((usuario == null) ? 0 : usuario.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;
AnuncioUsuarioId other = (AnuncioUsuarioId) obj;
if (anuncio == null) {
if (other.anuncio != null)
return false;
} else if (!anuncio.equals(other.anuncio))
return false;
if (usuario == null) {
if (other.usuario != null)
return false;
} else if (!usuario.equals(other.usuario))
return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy