diff flys-backend/src/main/java/de/intevation/flys/model/WstColumn.java @ 167:15d515fe15f5

Added POJOs to be mapped to schema. flys-backend/trunk@1456 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 10 Mar 2011 13:44:51 +0000
parents
children 86a1bd9cc50e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flys-backend/src/main/java/de/intevation/flys/model/WstColumn.java	Thu Mar 10 13:44:51 2011 +0000
@@ -0,0 +1,57 @@
+package de.intevation.flys.model;
+
+import java.io.Serializable;
+
+public class WstColumn
+implements   Serializable
+{
+    private Long         id;
+    private Wst          wst;
+    private String       name;
+    private String       description;
+    private TimeInterval timeInterval;
+
+    public WstColumn() {
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setWst(Wst wst) {
+        this.wst = wst;
+    }
+
+    public Wst getWst() {
+        return wst;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setDescription(String description) {
+        this.description = description;
+    }
+
+    public String getDescription() {
+        return description;
+    }
+
+    public void setTimeInterval(TimeInterval timeInterval) {
+        this.timeInterval = timeInterval;
+    }
+
+    public TimeInterval getTimeInterval() {
+        return timeInterval;
+    }
+}
+// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org