1
2 package org.miloss.fgsms.services.interfaces.automatedreportingservice;
3
4 import java.io.Serializable;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlSchemaType;
9 import javax.xml.bind.annotation.XmlType;
10 import java.util.Calendar;
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "CompletedJobs", propOrder = {
35 "reportId",
36 "timestamp"
37 })
38 public class CompletedJobs
39 implements Serializable
40 {
41
42 private final static long serialVersionUID = 1L;
43 @XmlElement(required = true)
44 protected String reportId;
45 @XmlElement(required = true)
46 @XmlSchemaType(name = "dateTime")
47 protected Calendar timestamp;
48
49
50
51
52
53
54
55
56
57 public String getReportId() {
58 return reportId;
59 }
60
61
62
63
64
65
66
67
68
69 public void setReportId(String value) {
70 this.reportId = value;
71 }
72
73 public boolean isSetReportId() {
74 return (this.reportId!= null);
75 }
76
77
78
79
80
81
82
83
84
85 public Calendar getTimestamp() {
86 return timestamp;
87 }
88
89
90
91
92
93
94
95
96
97 public void setTimestamp(Calendar value) {
98 this.timestamp = value;
99 }
100
101 public boolean isSetTimestamp() {
102 return (this.timestamp!= null);
103 }
104
105 }