comparison 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
comparison
equal deleted inserted replaced
166:56eb8f1b42cf 167:15d515fe15f5
1 package de.intevation.flys.model;
2
3 import java.io.Serializable;
4
5 public class WstColumn
6 implements Serializable
7 {
8 private Long id;
9 private Wst wst;
10 private String name;
11 private String description;
12 private TimeInterval timeInterval;
13
14 public WstColumn() {
15 }
16
17 public void setId(Long id) {
18 this.id = id;
19 }
20
21 public Long getId() {
22 return id;
23 }
24
25 public void setWst(Wst wst) {
26 this.wst = wst;
27 }
28
29 public Wst getWst() {
30 return wst;
31 }
32
33 public void setName(String name) {
34 this.name = name;
35 }
36
37 public String getName() {
38 return name;
39 }
40
41 public void setDescription(String description) {
42 this.description = description;
43 }
44
45 public String getDescription() {
46 return description;
47 }
48
49 public void setTimeInterval(TimeInterval timeInterval) {
50 this.timeInterval = timeInterval;
51 }
52
53 public TimeInterval getTimeInterval() {
54 return timeInterval;
55 }
56 }
57 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org