1
2 package org.miloss.fgsms.services.interfaces.automatedreportingservice;
3
4 import java.io.Serializable;
5 import java.util.Calendar;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlSchemaType;
10 import javax.xml.bind.annotation.XmlSeeAlso;
11 import javax.xml.bind.annotation.XmlType;
12 import javax.xml.datatype.XMLGregorianCalendar;
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "abstractSchedule", propOrder = {
36 "startingAt"
37 })
38 @XmlSeeAlso(value = {DailySchedule.class, WeeklySchedule.class, MonthlySchedule.class, OneTimeSchedule.class})
39 public abstract class AbstractSchedule
40 implements Serializable
41 {
42
43 private final static long serialVersionUID = 1L;
44 @XmlElement(required = true)
45 @XmlSchemaType(name = "dateTime")
46 protected Calendar startingAt;
47
48
49
50
51
52
53
54
55
56 public Calendar getStartingAt() {
57 return startingAt;
58 }
59
60
61
62
63
64
65
66
67
68 public void setStartingAt(Calendar value) {
69 this.startingAt = value;
70 }
71
72 public boolean isSetStartingAt() {
73 return (this.startingAt!= null);
74 }
75
76 }