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 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "AddOrUpdateScheduledReportResponseMsg", propOrder = {
38 "classification",
39 "jobs",
40 "message",
41 "success"
42 })
43 public class AddOrUpdateScheduledReportResponseMsg
44 implements Serializable
45 {
46
47 private final static long serialVersionUID = 1L;
48 @XmlElement(required = true, nillable = true)
49 protected SecurityWrapper classification;
50 @XmlElement(required = true, nillable = true)
51 protected List<ReportDefinition> jobs;
52 @XmlElement(required = true)
53 protected String message;
54 @XmlElement(required = false)
55 protected boolean success;
56
57
58
59
60
61
62
63
64
65 public SecurityWrapper getClassification() {
66 return classification;
67 }
68
69
70
71
72
73
74
75
76
77 public void setClassification(SecurityWrapper value) {
78 this.classification = value;
79 }
80
81 public boolean isSetClassification() {
82 return (this.classification!= null);
83 }
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107 public List<ReportDefinition> getJobs() {
108 if (jobs == null) {
109 jobs = new ArrayList<ReportDefinition>();
110 }
111 return this.jobs;
112 }
113
114 public boolean isSetJobs() {
115 return ((this.jobs!= null)&&(!this.jobs.isEmpty()));
116 }
117
118 public void unsetJobs() {
119 this.jobs = null;
120 }
121
122
123
124
125
126
127
128
129
130 public String getMessage() {
131 return message;
132 }
133
134
135
136
137
138
139
140
141
142 public void setMessage(String value) {
143 this.message = value;
144 }
145
146 public boolean isSetMessage() {
147 return (this.message!= null);
148 }
149
150
151
152
153
154 public boolean isSuccess() {
155 return success;
156 }
157
158
159
160
161
162 public void setSuccess(boolean value) {
163 this.success = value;
164 }
165
166 public boolean isSetSuccess() {
167 return true;
168 }
169
170 }