1
2 package org.miloss.fgsms.services.interfaces.dataaccessservice;
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.XmlType;
9 import javax.xml.datatype.Duration;
10 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
11
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
37
38
39
40
41
42
43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name = "GetPerformanceAverageStatsResponseMsg", propOrder = {
45 "classification",
46 "averageResponseTime",
47 "failingInvocations",
48 "successfulInvocations",
49 "serviceLevelAgreementViolations",
50 "mtbf",
51 "url",
52 "displayName"
53 })
54 public class GetPerformanceAverageStatsResponseMsg
55 implements Serializable
56 {
57
58 private final static long serialVersionUID = 1L;
59 @XmlElement(required = true, nillable = true)
60 protected SecurityWrapper classification;
61 @XmlElement(name = "AverageResponseTime")
62 protected long averageResponseTime;
63 @XmlElement(name = "FailingInvocations")
64 protected long failingInvocations;
65 @XmlElement(name = "SuccessfulInvocations")
66 protected long successfulInvocations;
67 @XmlElement(name = "ServiceLevelAgreementViolations")
68 protected long serviceLevelAgreementViolations;
69 @XmlElement(name = "MTBF", required = false, nillable = true)
70 protected Duration mtbf;
71 @XmlElement(name = "URL", required = false)
72 protected String url;
73 @XmlElement(name = "DisplayName", required = false)
74 protected String displayName;
75
76
77
78
79
80
81
82
83
84 public SecurityWrapper getClassification() {
85 return classification;
86 }
87
88
89
90
91
92
93
94
95
96 public void setClassification(SecurityWrapper value) {
97 this.classification = value;
98 }
99
100 public boolean isSetClassification() {
101 return (this.classification!= null);
102 }
103
104
105
106
107
108 public long getAverageResponseTime() {
109 return averageResponseTime;
110 }
111
112
113
114
115
116 public void setAverageResponseTime(long value) {
117 this.averageResponseTime = value;
118 }
119
120 public boolean isSetAverageResponseTime() {
121 return true;
122 }
123
124
125
126
127
128 public long getFailingInvocations() {
129 return failingInvocations;
130 }
131
132
133
134
135
136 public void setFailingInvocations(long value) {
137 this.failingInvocations = value;
138 }
139
140 public boolean isSetFailingInvocations() {
141 return true;
142 }
143
144
145
146
147
148 public long getSuccessfulInvocations() {
149 return successfulInvocations;
150 }
151
152
153
154
155
156 public void setSuccessfulInvocations(long value) {
157 this.successfulInvocations = value;
158 }
159
160 public boolean isSetSuccessfulInvocations() {
161 return true;
162 }
163
164
165
166
167
168 public long getServiceLevelAgreementViolations() {
169 return serviceLevelAgreementViolations;
170 }
171
172
173
174
175
176 public void setServiceLevelAgreementViolations(long value) {
177 this.serviceLevelAgreementViolations = value;
178 }
179
180 public boolean isSetServiceLevelAgreementViolations() {
181 return true;
182 }
183
184
185
186
187
188
189
190
191
192 public Duration getMTBF() {
193 return mtbf;
194 }
195
196
197
198
199
200
201
202
203
204 public void setMTBF(Duration value) {
205 this.mtbf = value;
206 }
207
208 public boolean isSetMTBF() {
209 return (this.mtbf!= null);
210 }
211
212
213
214
215
216
217
218
219
220 public String getURL() {
221 return url;
222 }
223
224
225
226
227
228
229
230
231
232 public void setURL(String value) {
233 this.url = value;
234 }
235
236 public boolean isSetURL() {
237 return (this.url!= null);
238 }
239
240
241
242
243
244
245
246
247
248 public String getDisplayName() {
249 return displayName;
250 }
251
252
253
254
255
256
257
258
259
260 public void setDisplayName(String value) {
261 this.displayName = value;
262 }
263
264 public boolean isSetDisplayName() {
265 return (this.displayName!= null);
266 }
267
268 }