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 org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
10 import org.miloss.fgsms.services.interfaces.common.TimeRange;
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 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "GetSLAFaultRecordsRequestMsg", propOrder = {
42 "classification",
43 "url",
44 "range",
45 "recordcount",
46 "offset"
47 })
48 public class GetSLAFaultRecordsRequestMsg
49 implements Serializable
50 {
51
52 private final static long serialVersionUID = 1L;
53 @XmlElement(required = true, nillable = true)
54 protected SecurityWrapper classification;
55 @XmlElement(name = "URL", required = true, nillable = true)
56 protected String url;
57 @XmlElement(required = true, nillable = true)
58 protected TimeRange range;
59 @XmlElement(defaultValue = "100")
60 protected long recordcount;
61 @XmlElement(defaultValue = "0")
62 protected long offset;
63
64
65
66
67
68
69
70
71
72 public SecurityWrapper getClassification() {
73 return classification;
74 }
75
76
77
78
79
80
81
82
83
84 public void setClassification(SecurityWrapper value) {
85 this.classification = value;
86 }
87
88 public boolean isSetClassification() {
89 return (this.classification!= null);
90 }
91
92
93
94
95
96
97
98
99
100 public String getURL() {
101 return url;
102 }
103
104
105
106
107
108
109
110
111
112 public void setURL(String value) {
113 this.url = value;
114 }
115
116 public boolean isSetURL() {
117 return (this.url!= null);
118 }
119
120
121
122
123
124
125
126
127
128 public TimeRange getRange() {
129 return range;
130 }
131
132
133
134
135
136
137
138
139
140 public void setRange(TimeRange value) {
141 this.range = value;
142 }
143
144 public boolean isSetRange() {
145 return (this.range!= null);
146 }
147
148
149
150
151
152 public long getRecordcount() {
153 return recordcount;
154 }
155
156
157
158
159
160 public void setRecordcount(long value) {
161 this.recordcount = value;
162 }
163
164 public boolean isSetRecordcount() {
165 return true;
166 }
167
168
169
170
171
172 public long getOffset() {
173 return offset;
174 }
175
176
177
178
179
180 public void setOffset(long value) {
181 this.offset = value;
182 }
183
184 public boolean isSetOffset() {
185 return true;
186 }
187
188 }