1 package org.smartcomps.twister.engine.priv.timer.po;
2
3 import java.util.Date;
4
5 /***
6 * A persistent class used by the EngineTimer to record created tasks
7 * so they can be restored after Twister is shutdown.
8 */
9 public class ECTaskPersister {
10
11 private Long id;
12 private Date dueDate;
13 private Long ecId;
14 private String additionalInfo;
15
16 public Long getId() {
17 return id;
18 }
19
20 public void setId(Long id) {
21 this.id = id;
22 }
23
24 public Date getDueDate() {
25 return dueDate;
26 }
27
28 public void setDueDate(Date dueDate) {
29 this.dueDate = dueDate;
30 }
31
32 public Long getEcId() {
33 return ecId;
34 }
35
36 public void setEcId(Long ecId) {
37 this.ecId = ecId;
38 }
39
40 public String getAdditionalInfo() {
41 return additionalInfo;
42 }
43
44 public void setAdditionalInfo(String additionalInfo) {
45 this.additionalInfo = additionalInfo;
46 }
47 }
This page was automatically generated by Maven