View Javadoc
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 GetMachinePerformanceLogsByRangeRequestMsg complex type.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * 
20   * <pre>
21   * &lt;complexType name="GetMachinePerformanceLogsByRangeRequestMsg">
22   *   &lt;complexContent>
23   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24   *       &lt;sequence>
25   *         &lt;element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
26   *         &lt;element name="uri" type="{http://www.w3.org/2001/XMLSchema}string"/>
27   *         &lt;element name="range" type="{urn:org:miloss:fgsms:services:interfaces:common}TimeRange"/>
28   *         &lt;element name="recordcount" type="{http://www.w3.org/2001/XMLSchema}long"/>
29   *         &lt;element name="offset" type="{http://www.w3.org/2001/XMLSchema}long"/>
30   *       &lt;/sequence>
31   *     &lt;/restriction>
32   *   &lt;/complexContent>
33   * &lt;/complexType>
34   * </pre>
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       * Gets the value of the classification property.
62       * 
63       * @return
64       *     possible object is
65       *     {@link SecurityWrapper }
66       *     
67       */
68      public SecurityWrapper getClassification() {
69          return classification;
70      }
71  
72      /**
73       * Sets the value of the classification property.
74       * 
75       * @param value
76       *     allowed object is
77       *     {@link SecurityWrapper }
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       * Gets the value of the uri property.
90       * 
91       * @return
92       *     possible object is
93       *     {@link String }
94       *     
95       */
96      public String getUri() {
97          return uri;
98      }
99  
100     /**
101      * Sets the value of the uri property.
102      * 
103      * @param value
104      *     allowed object is
105      *     {@link String }
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      * Gets the value of the range property.
118      * 
119      * @return
120      *     possible object is
121      *     {@link TimeRange }
122      *     
123      */
124     public TimeRange getRange() {
125         return range;
126     }
127 
128     /**
129      * Sets the value of the range property.
130      * 
131      * @param value
132      *     allowed object is
133      *     {@link TimeRange }
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      * Gets the value of the recordcount property.
146      * 
147      */
148     public long getRecordcount() {
149         return recordcount;
150     }
151 
152     /**
153      * Sets the value of the recordcount property.
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      * Gets the value of the offset property.
166      * 
167      */
168     public long getOffset() {
169         return offset;
170     }
171 
172     /**
173      * Sets the value of the offset property.
174      * 
175      */
176     public void setOffset(long value) {
177         this.offset = value;
178     }
179 
180     public boolean isSetOffset() {
181         return true;
182     }
183 
184 }