01: package org.claros.intouch.tasks.models;
02:
03: import java.sql.Timestamp;
04:
05: public class Task {
06: private Long id;
07: private String username;
08: private String checked;
09: private Timestamp recordDate;
10: private String description;
11: private Integer priority;
12: private String color;
13:
14: public Long getId() {
15: return id;
16: }
17:
18: public void setId(Long id) {
19: this .id = id;
20: }
21:
22: public String getUsername() {
23: return username;
24: }
25:
26: public void setUsername(String username) {
27: this .username = username;
28: }
29:
30: public String getChecked() {
31: return checked;
32: }
33:
34: public void setChecked(String checked) {
35: this .checked = checked;
36: }
37:
38: public Timestamp getRecordDate() {
39: return recordDate;
40: }
41:
42: public void setRecordDate(Timestamp recordDate) {
43: this .recordDate = recordDate;
44: }
45:
46: public String getDescription() {
47: return description;
48: }
49:
50: public void setDescription(String description) {
51: this .description = description;
52: }
53:
54: public Integer getPriority() {
55: return priority;
56: }
57:
58: public void setPriority(Integer priority) {
59: this .priority = priority;
60: }
61:
62: public String getColor() {
63: return color;
64: }
65:
66: public void setColor(String color) {
67: this.color = color;
68: }
69:
70: }
|