1
2 package org.miloss.fgsms.services.interfaces.automatedreportingservice;
3
4 import java.io.Serializable;
5 import java.util.ArrayList;
6 import java.util.List;
7 import javax.xml.bind.annotation.XmlAccessType;
8 import javax.xml.bind.annotation.XmlAccessorType;
9 import javax.xml.bind.annotation.XmlElement;
10 import javax.xml.bind.annotation.XmlType;
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 = "monthlySchedule", propOrder = {
35 "monthNameIs",
36 "dayOfTheMonthIs"
37 })
38 public class MonthlySchedule
39 extends AbstractSchedule
40 implements Serializable
41 {
42
43 private final static long serialVersionUID = 1L;
44 @XmlElement(name = "MonthNameIs", required = true)
45 protected List<Monthnames> monthNameIs;
46 @XmlElement(name = "DayOfTheMonthIs", type = Integer.class)
47 protected List<Integer> dayOfTheMonthIs;
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71 public List<Monthnames> getMonthNameIs() {
72 if (monthNameIs == null) {
73 monthNameIs = new ArrayList<Monthnames>();
74 }
75 return this.monthNameIs;
76 }
77
78 public boolean isSetMonthNameIs() {
79 return ((this.monthNameIs!= null)&&(!this.monthNameIs.isEmpty()));
80 }
81
82 public void unsetMonthNameIs() {
83 this.monthNameIs = null;
84 }
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108 public List<Integer> getDayOfTheMonthIs() {
109 if (dayOfTheMonthIs == null) {
110 dayOfTheMonthIs = new ArrayList<Integer>();
111 }
112 return this.dayOfTheMonthIs;
113 }
114
115 public boolean isSetDayOfTheMonthIs() {
116 return ((this.dayOfTheMonthIs!= null)&&(!this.dayOfTheMonthIs.isEmpty()));
117 }
118
119 public void unsetDayOfTheMonthIs() {
120 this.dayOfTheMonthIs = null;
121 }
122
123 }