Mercurial > dive4elements > river
comparison backend/src/main/java/de/intevation/seddb/model/SprobeId.java @ 5838:5aa05a7a34b7
Rename modules to more fitting names.
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Thu, 25 Apr 2013 15:23:37 +0200 |
parents | flys-backend/src/main/java/de/intevation/seddb/model/SprobeId.java@18619c1e7c2a |
children | 4dd33b86dc61 |
comparison
equal
deleted
inserted
replaced
5837:d9901a08d0a6 | 5838:5aa05a7a34b7 |
---|---|
1 package org.dive4elements.seddb.model; | |
2 // Generated 14.06.2012 11:30:57 by Hibernate Tools 3.4.0.CR1 | |
3 | |
4 | |
5 import javax.persistence.Column; | |
6 import javax.persistence.Embeddable; | |
7 | |
8 /** | |
9 * SprobeId generated by hbm2java | |
10 */ | |
11 @Embeddable | |
12 public class SprobeId implements java.io.Serializable { | |
13 | |
14 | |
15 private long slotrechteid; | |
16 private int lfdnr; | |
17 | |
18 public SprobeId() { | |
19 } | |
20 | |
21 public SprobeId(long slotrechteid, int lfdnr) { | |
22 this.slotrechteid = slotrechteid; | |
23 this.lfdnr = lfdnr; | |
24 } | |
25 | |
26 | |
27 | |
28 @Column(name="SLOTRECHTEID", nullable=false, precision=11, scale=0) | |
29 public long getSlotrechteid() { | |
30 return this.slotrechteid; | |
31 } | |
32 | |
33 public void setSlotrechteid(long slotrechteid) { | |
34 this.slotrechteid = slotrechteid; | |
35 } | |
36 | |
37 | |
38 @Column(name="LFDNR", nullable=false, precision=5, scale=0) | |
39 public int getLfdnr() { | |
40 return this.lfdnr; | |
41 } | |
42 | |
43 public void setLfdnr(int lfdnr) { | |
44 this.lfdnr = lfdnr; | |
45 } | |
46 | |
47 | |
48 public boolean equals(Object other) { | |
49 if ( (this == other ) ) return true; | |
50 if ( (other == null ) ) return false; | |
51 if ( !(other instanceof SprobeId) ) return false; | |
52 SprobeId castOther = ( SprobeId ) other; | |
53 | |
54 return (this.getSlotrechteid()==castOther.getSlotrechteid()) | |
55 && (this.getLfdnr()==castOther.getLfdnr()); | |
56 } | |
57 | |
58 public int hashCode() { | |
59 int result = 17; | |
60 | |
61 result = 37 * result + (int) this.getSlotrechteid(); | |
62 result = 37 * result + this.getLfdnr(); | |
63 return result; | |
64 } | |
65 } |