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