comparison flys-backend/src/main/java/de/intevation/flys/model/WstColumn.java @ 168:86a1bd9cc50e

More Hibernate/JPA stuff flys-backend/trunk@1458 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 11 Mar 2011 14:41:18 +0000
parents 15d515fe15f5
children 4a83e14f40f9
comparison
equal deleted inserted replaced
167:15d515fe15f5 168:86a1bd9cc50e
3 import java.io.Serializable; 3 import java.io.Serializable;
4 4
5 public class WstColumn 5 public class WstColumn
6 implements Serializable 6 implements Serializable
7 { 7 {
8 private Long id; 8 private Integer id;
9 private Wst wst; 9 private Wst wst;
10 private String name; 10 private String name;
11 private String description; 11 private String description;
12 private TimeInterval timeInterval; 12 private TimeInterval timeInterval;
13 13
14 public WstColumn() { 14 public WstColumn() {
15 } 15 }
16 16
17 public void setId(Long id) { 17 public void setId(Integer id) {
18 this.id = id; 18 this.id = id;
19 } 19 }
20 20
21 public Long getId() { 21 public Integer getId() {
22 return id; 22 return id;
23 } 23 }
24 24
25 public void setWst(Wst wst) { 25 public void setWst(Wst wst) {
26 this.wst = wst; 26 this.wst = wst;

http://dive4elements.wald.intevation.org