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 * <p>Java class for CompletedJobs complex type.
15 *
16 * <p>The following schema fragment specifies the expected content contained within this class.
17 *
18 * <pre>
19 * <complexType name="CompletedJobs">
20 * <complexContent>
21 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22 * <sequence>
23 * <element name="reportId" type="{http://www.w3.org/2001/XMLSchema}string"/>
24 * <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
25 * </sequence>
26 * </restriction>
27 * </complexContent>
28 * </complexType>
29 * </pre>
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 * Gets the value of the reportId property.
51 *
52 * @return
53 * possible object is
54 * {@link String }
55 *
56 */
57 public String getReportId() {
58 return reportId;
59 }
60
61 /**
62 * Sets the value of the reportId property.
63 *
64 * @param value
65 * allowed object is
66 * {@link String }
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 * Gets the value of the timestamp property.
79 *
80 * @return
81 * possible object is
82 * {@link Calendar }
83 *
84 */
85 public Calendar getTimestamp() {
86 return timestamp;
87 }
88
89 /**
90 * Sets the value of the timestamp property.
91 *
92 * @param value
93 * allowed object is
94 * {@link Calendar }
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 }