Poll.java
924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package fi.insomnia.bortal.model;
import fi.insomnia.bortal.model.GenericEntity;
import java.io.Serializable;
import java.util.Calendar;
import javax.persistence.*;
import static javax.persistence.TemporalType.TIMESTAMP;
/**
* Entity implementation class for Entity: Poll
*
*/
@Entity
public class Poll extends GenericEntity implements Serializable {
/**
*
*/
private static final long serialVersionUID = -5655775315722028984L;
@Temporal(TIMESTAMP)
private Calendar begin = Calendar.getInstance();
@Temporal(TIMESTAMP)
private Calendar end = Calendar.getInstance();
public Poll() {
super();
}
public Calendar getBegin() {
return begin;
}
public void setBegin(Calendar begin) {
this.begin = begin;
}
public Calendar getEnd() {
return end;
}
public void setEnd(Calendar end) {
this.end = end;
}
}