# HG changeset patch # User Raimund Renkert # Date 1371132690 -7200 # Node ID 7ea3ea59e971d0e8a2a418780edfa76ff98a11be # Parent dbb7064c12908f35639de72486c7d675a65f42b8 Added missing id entity for LMessung. diff -r dbb7064c1290 -r 7ea3ea59e971 src/main/java/de/intevation/lada/model/LMessungId.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/java/de/intevation/lada/model/LMessungId.java Thu Jun 13 16:11:30 2013 +0200 @@ -0,0 +1,67 @@ +package de.intevation.lada.model; + +// Generated 21.05.2013 16:58:30 by Hibernate Tools 3.4.0.CR1 + +import javax.persistence.Column; +import javax.persistence.Embeddable; + +/** + * LMessungId generated by hbm2java + */ +@Embeddable +public class LMessungId implements java.io.Serializable { + + private String probeId; + private short messungsId; + + public LMessungId() { + } + + public LMessungId(String probeId, short messungsId) { + this.probeId = probeId; + this.messungsId = messungsId; + } + + @Column(name = "probe_id", nullable = false, length = 20) + public String getProbeId() { + return this.probeId; + } + + public void setProbeId(String probeId) { + this.probeId = probeId; + } + + @Column(name = "messungs_id", nullable = false) + public short getMessungsId() { + return this.messungsId; + } + + public void setMessungsId(short messungsId) { + this.messungsId = messungsId; + } + + public boolean equals(Object other) { + if ((this == other)) + return true; + if ((other == null)) + return false; + if (!(other instanceof LMessungId)) + return false; + LMessungId castOther = (LMessungId) other; + + return ((this.getProbeId() == castOther.getProbeId()) || (this + .getProbeId() != null && castOther.getProbeId() != null && this + .getProbeId().equals(castOther.getProbeId()))) + && (this.getMessungsId() == castOther.getMessungsId()); + } + + public int hashCode() { + int result = 17; + + result = 37 * result + + (getProbeId() == null ? 0 : this.getProbeId().hashCode()); + result = 37 * result + this.getMessungsId(); + return result; + } + +}