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 * request message
15 *
16 * <p>Java class for GetAuditLogsByTimeRangeRequestMsg complex type.
17 *
18 * <p>The following schema fragment specifies the expected content contained within this class.
19 *
20 * <pre>
21 * <complexType name="GetAuditLogsByTimeRangeRequestMsg">
22 * <complexContent>
23 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24 * <sequence>
25 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
26 * <element name="range" type="{urn:org:miloss:fgsms:services:interfaces:common}TimeRange"/>
27 * <element name="recordcount" type="{http://www.w3.org/2001/XMLSchema}long"/>
28 * <element name="offset" type="{http://www.w3.org/2001/XMLSchema}long"/>
29 * </sequence>
30 * </restriction>
31 * </complexContent>
32 * </complexType>
33 * </pre>
34 *
35 *
36 */
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "GetAuditLogsByTimeRangeRequestMsg", propOrder = {
39 "classification",
40 "range",
41 "recordcount",
42 "offset"
43 })
44 public class GetAuditLogsByTimeRangeRequestMsg
45 implements Serializable
46 {
47
48 private final static long serialVersionUID = 1L;
49 @XmlElement(required = true, nillable = true)
50 protected SecurityWrapper classification;
51 @XmlElement(required = true)
52 protected TimeRange range;
53 protected long recordcount;
54 protected long offset;
55
56 /**
57 * Gets the value of the classification property.
58 *
59 * @return
60 * possible object is
61 * {@link SecurityWrapper }
62 *
63 */
64 public SecurityWrapper getClassification() {
65 return classification;
66 }
67
68 /**
69 * Sets the value of the classification property.
70 *
71 * @param value
72 * allowed object is
73 * {@link SecurityWrapper }
74 *
75 */
76 public void setClassification(SecurityWrapper value) {
77 this.classification = value;
78 }
79
80 public boolean isSetClassification() {
81 return (this.classification!= null);
82 }
83
84 /**
85 * Gets the value of the range property.
86 *
87 * @return
88 * possible object is
89 * {@link TimeRange }
90 *
91 */
92 public TimeRange getRange() {
93 return range;
94 }
95
96 /**
97 * Sets the value of the range property.
98 *
99 * @param value
100 * allowed object is
101 * {@link TimeRange }
102 *
103 */
104 public void setRange(TimeRange value) {
105 this.range = value;
106 }
107
108 public boolean isSetRange() {
109 return (this.range!= null);
110 }
111
112 /**
113 * Gets the value of the recordcount property.
114 *
115 */
116 public long getRecordcount() {
117 return recordcount;
118 }
119
120 /**
121 * Sets the value of the recordcount property.
122 *
123 */
124 public void setRecordcount(long value) {
125 this.recordcount = value;
126 }
127
128 public boolean isSetRecordcount() {
129 return true;
130 }
131
132 /**
133 * Gets the value of the offset property.
134 *
135 */
136 public long getOffset() {
137 return offset;
138 }
139
140 /**
141 * Sets the value of the offset property.
142 *
143 */
144 public void setOffset(long value) {
145 this.offset = value;
146 }
147
148 public boolean isSetOffset() {
149 return true;
150 }
151
152 }