comparison flys-backend/src/main/java/de/intevation/seddb/model/Sohlprobe.java @ 3334:2ae732e2c65c

FLYS backend: Removed trailing whitespace. flys-backend/trunk@4669 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 15 Jun 2012 09:20:49 +0000
parents aa8ed778c8cc
children 18619c1e7c2a
comparison
equal deleted inserted replaced
3333:76c75c8b9ee0 3334:2ae732e2c65c
55 this.beschreibung = beschreibung; 55 this.beschreibung = beschreibung;
56 this.lastupdated = lastupdated; 56 this.lastupdated = lastupdated;
57 this.probebilds = probebilds; 57 this.probebilds = probebilds;
58 this.siebanalyses = siebanalyses; 58 this.siebanalyses = siebanalyses;
59 } 59 }
60
61 @Id
62 60
63 61 @Id
62
63
64 @Column(name="SOHLPROBEID", unique=true, nullable=false, precision=11, scale=0) 64 @Column(name="SOHLPROBEID", unique=true, nullable=false, precision=11, scale=0)
65 public long getSohlprobeid() { 65 public long getSohlprobeid() {
66 return this.sohlprobeid; 66 return this.sohlprobeid;
67 } 67 }
68 68
69 public void setSohlprobeid(long sohlprobeid) { 69 public void setSohlprobeid(long sohlprobeid) {
70 this.sohlprobeid = sohlprobeid; 70 this.sohlprobeid = sohlprobeid;
71 } 71 }
72 72
73 @ManyToOne(fetch=FetchType.LAZY) 73 @ManyToOne(fetch=FetchType.LAZY)
74 @JoinColumn(name="PROBENAHMEARTID", nullable=false) 74 @JoinColumn(name="PROBENAHMEARTID", nullable=false)
75 public Zzprobenahmeart getZzprobenahmeart() { 75 public Zzprobenahmeart getZzprobenahmeart() {
76 return this.zzprobenahmeart; 76 return this.zzprobenahmeart;
77 } 77 }
78 78
79 public void setZzprobenahmeart(Zzprobenahmeart zzprobenahmeart) { 79 public void setZzprobenahmeart(Zzprobenahmeart zzprobenahmeart) {
80 this.zzprobenahmeart = zzprobenahmeart; 80 this.zzprobenahmeart = zzprobenahmeart;
81 } 81 }
82 82
83 @ManyToOne(fetch=FetchType.LAZY) 83 @ManyToOne(fetch=FetchType.LAZY)
84 @JoinColumn(name="SOHLTESTID", nullable=false) 84 @JoinColumn(name="SOHLTESTID", nullable=false)
85 public Sohltest getSohltest() { 85 public Sohltest getSohltest() {
86 return this.sohltest; 86 return this.sohltest;
87 } 87 }
88 88
89 public void setSohltest(Sohltest sohltest) { 89 public void setSohltest(Sohltest sohltest) {
90 this.sohltest = sohltest; 90 this.sohltest = sohltest;
91 } 91 }
92 92
93 93
94 @Column(name="TIEFEVON", precision=8, scale=3) 94 @Column(name="TIEFEVON", precision=8, scale=3)
95 public BigDecimal getTiefevon() { 95 public BigDecimal getTiefevon() {
96 return this.tiefevon; 96 return this.tiefevon;
97 } 97 }
98 98
99 public void setTiefevon(BigDecimal tiefevon) { 99 public void setTiefevon(BigDecimal tiefevon) {
100 this.tiefevon = tiefevon; 100 this.tiefevon = tiefevon;
101 } 101 }
102 102
103 103
104 @Column(name="TIEFEBIS", precision=8, scale=3) 104 @Column(name="TIEFEBIS", precision=8, scale=3)
105 public BigDecimal getTiefebis() { 105 public BigDecimal getTiefebis() {
106 return this.tiefebis; 106 return this.tiefebis;
107 } 107 }
108 108
109 public void setTiefebis(BigDecimal tiefebis) { 109 public void setTiefebis(BigDecimal tiefebis) {
110 this.tiefebis = tiefebis; 110 this.tiefebis = tiefebis;
111 } 111 }
112 112
113 113
114 @Column(name="BESCHREIBUNG", length=1024) 114 @Column(name="BESCHREIBUNG", length=1024)
115 public String getBeschreibung() { 115 public String getBeschreibung() {
116 return this.beschreibung; 116 return this.beschreibung;
117 } 117 }
118 118
119 public void setBeschreibung(String beschreibung) { 119 public void setBeschreibung(String beschreibung) {
120 this.beschreibung = beschreibung; 120 this.beschreibung = beschreibung;
121 } 121 }
122 122
123 @Temporal(TemporalType.DATE) 123 @Temporal(TemporalType.DATE)
124 @Column(name="LASTUPDATED", nullable=false, length=7) 124 @Column(name="LASTUPDATED", nullable=false, length=7)
125 public Date getLastupdated() { 125 public Date getLastupdated() {
126 return this.lastupdated; 126 return this.lastupdated;
127 } 127 }
128 128
129 public void setLastupdated(Date lastupdated) { 129 public void setLastupdated(Date lastupdated) {
130 this.lastupdated = lastupdated; 130 this.lastupdated = lastupdated;
131 } 131 }
132 132
133 @OneToMany(fetch=FetchType.LAZY, mappedBy="sohlprobe") 133 @OneToMany(fetch=FetchType.LAZY, mappedBy="sohlprobe")
134 public Set<Probebild> getProbebilds() { 134 public Set<Probebild> getProbebilds() {
135 return this.probebilds; 135 return this.probebilds;
136 } 136 }
137 137
138 public void setProbebilds(Set<Probebild> probebilds) { 138 public void setProbebilds(Set<Probebild> probebilds) {
139 this.probebilds = probebilds; 139 this.probebilds = probebilds;
140 } 140 }
141 141
142 @OneToMany(fetch=FetchType.LAZY, mappedBy="sohlprobe") 142 @OneToMany(fetch=FetchType.LAZY, mappedBy="sohlprobe")
143 public Set<Siebanalyse> getSiebanalyses() { 143 public Set<Siebanalyse> getSiebanalyses() {
144 return this.siebanalyses; 144 return this.siebanalyses;
145 } 145 }
146 146
147 public void setSiebanalyses(Set<Siebanalyse> siebanalyses) { 147 public void setSiebanalyses(Set<Siebanalyse> siebanalyses) {
148 this.siebanalyses = siebanalyses; 148 this.siebanalyses = siebanalyses;
149 } 149 }
150 150
151 151

http://dive4elements.wald.intevation.org