comparison flys-backend/src/main/java/de/intevation/flys/model/TimeInterval.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 import java.util.Date;
6
7 public class TimeInterval
8 implements Serializable
9 {
10 private Long id;
11 private Date startTime;
12 private Date stopTime;
13
14 public TimeInterval() {
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 setStartTime(Date startTime) {
26 this.startTime = startTime;
27 }
28
29 public Date getStartTime() {
30 return startTime;
31 }
32
33 public void setStopTime(Date stopTime) {
34 this.stopTime = stopTime;
35 }
36
37 public Date getStopTime() {
38 return stopTime;
39 }
40 }
41 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org