[Dive4elements-commits] [PATCH 5 of 6] Add kind, sectie and sobek to HydrBoundary class
Wald Commits
scm-commit at wald.intevation.org
Wed Feb 20 17:05:29 CET 2013
# HG changeset patch
# User Andre Heinecke <aheinecke at intevation.de>
# Date 1361376149 -3600
# Branch dami
# Node ID bafc655ee6308cd7a02dbfb1bbfb246461d34f78
# Parent c9ba713a7750fd220c4be822d664573eb7b0d950
Add kind, sectie and sobek to HydrBoundary class
diff -r c9ba713a7750 -r bafc655ee630 flys-backend/src/main/java/de/intevation/flys/model/HydrBoundary.java
--- a/flys-backend/src/main/java/de/intevation/flys/model/HydrBoundary.java Wed Feb 20 17:01:42 2013 +0100
+++ b/flys-backend/src/main/java/de/intevation/flys/model/HydrBoundary.java Wed Feb 20 17:02:29 2013 +0100
@@ -25,9 +25,12 @@
implements Serializable
{
private Integer id;
+ private SectieKind sectie;
+ private SobekKind sobek;
private String name;
private River river;
private LineString geom;
+ private BoundaryKind kind;
public HydrBoundary() {
}
@@ -44,7 +47,6 @@
this.id = id;
}
-
@OneToOne
@JoinColumn(name = "river_id")
public River getRiver() {
@@ -90,5 +92,71 @@
return query.list();
}
+
+ /**
+ * Get sectie.
+ *
+ * @return sectie as SectieKind.
+ */
+ @OneToOne
+ @Column(name = "sectie")
+ public SectieKind getSectie()
+ {
+ return sectie;
+ }
+
+ /**
+ * Set sectie.
+ *
+ * @param sectie the value to set.
+ */
+ public void setSectie(SectieKind sectie)
+ {
+ this.sectie = sectie;
+ }
+
+ /**
+ * Get sobek.
+ *
+ * @return sobek as SobekKind.
+ */
+ @OneToOne
+ @JoinColumn(name = "sobek")
+ public SobekKind getSobek()
+ {
+ return sobek;
+ }
+
+ /**
+ * Set sobek.
+ *
+ * @param sobek the value to set.
+ */
+ public void setSobek(SobekKind sobek)
+ {
+ this.sobek = sobek;
+ }
+
+ /**
+ * Get kind.
+ *
+ * @return kind as BoundaryKind.
+ */
+ @OneToOne
+ @JoinColumn(name = "kind")
+ public BoundaryKind getKind()
+ {
+ return kind;
+ }
+
+ /**
+ * Set kind.
+ *
+ * @param kind the value to set.
+ */
+ public void setKind(BoundaryKind kind)
+ {
+ this.kind = kind;
+ }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :
diff -r c9ba713a7750 -r bafc655ee630 flys-backend/src/main/java/de/intevation/flys/model/HydrBoundaryPoly.java
--- a/flys-backend/src/main/java/de/intevation/flys/model/HydrBoundaryPoly.java Wed Feb 20 17:01:42 2013 +0100
+++ b/flys-backend/src/main/java/de/intevation/flys/model/HydrBoundaryPoly.java Wed Feb 20 17:02:29 2013 +0100
@@ -28,6 +28,9 @@
private String name;
private River river;
private Geometry geom;
+ private SectieKind sectie;
+ private SobekKind sobek;
+ private BoundaryKind kind;
public HydrBoundaryPoly() {
}
@@ -90,5 +93,71 @@
return query.list();
}
+
+ /**
+ * Get sectie.
+ *
+ * @return sectie as SectieKind.
+ */
+ @OneToOne
+ @Column(name = "sectie")
+ public SectieKind getSectie()
+ {
+ return sectie;
+ }
+
+ /**
+ * Set sectie.
+ *
+ * @param sectie the value to set.
+ */
+ public void setSectie(SectieKind sectie)
+ {
+ this.sectie = sectie;
+ }
+
+ /**
+ * Get sobek.
+ *
+ * @return sobek as SobekKind.
+ */
+ @OneToOne
+ @JoinColumn(name = "sobek")
+ public SobekKind getSobek()
+ {
+ return sobek;
+ }
+
+ /**
+ * Set sobek.
+ *
+ * @param sobek the value to set.
+ */
+ public void setSobek(SobekKind sobek)
+ {
+ this.sobek = sobek;
+ }
+
+ /**
+ * Get kind.
+ *
+ * @return kind as BoundaryKind.
+ */
+ @OneToOne
+ @JoinColumn(name = "kind")
+ public BoundaryKind getKind()
+ {
+ return kind;
+ }
+
+ /**
+ * Set kind.
+ *
+ * @param kind the value to set.
+ */
+ public void setKind(BoundaryKind kind)
+ {
+ this.kind = kind;
+ }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :
More information about the Dive4elements-commits
mailing list