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   * 
15   *             GetPerformanceStats Request
16   *             
17   * 
18   * <p>Java class for GetSLAFaultRecordsRequestMsg complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="GetSLAFaultRecordsRequestMsg">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;sequence>
27   *         &lt;element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
28   *         &lt;element name="URL" type="{http://www.w3.org/2001/XMLSchema}string"/>
29   *         &lt;element name="range" type="{urn:org:miloss:fgsms:services:interfaces:common}TimeRange"/>
30   *         &lt;element name="recordcount" type="{http://www.w3.org/2001/XMLSchema}long"/>
31   *         &lt;element name="offset" type="{http://www.w3.org/2001/XMLSchema}long"/>
32   *       &lt;/sequence>
33   *     &lt;/restriction>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
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       * Gets the value of the classification property.
66       * 
67       * @return
68       *     possible object is
69       *     {@link SecurityWrapper }
70       *     
71       */
72      public SecurityWrapper getClassification() {
73          return classification;
74      }
75  
76      /**
77       * Sets the value of the classification property.
78       * 
79       * @param value
80       *     allowed object is
81       *     {@link SecurityWrapper }
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       * Gets the value of the url property.
94       * 
95       * @return
96       *     possible object is
97       *     {@link String }
98       *     
99       */
100     public String getURL() {
101         return url;
102     }
103 
104     /**
105      * Sets the value of the url property.
106      * 
107      * @param value
108      *     allowed object is
109      *     {@link String }
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      * Gets the value of the range property.
122      * 
123      * @return
124      *     possible object is
125      *     {@link TimeRange }
126      *     
127      */
128     public TimeRange getRange() {
129         return range;
130     }
131 
132     /**
133      * Sets the value of the range property.
134      * 
135      * @param value
136      *     allowed object is
137      *     {@link TimeRange }
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      * Gets the value of the recordcount property.
150      * 
151      */
152     public long getRecordcount() {
153         return recordcount;
154     }
155 
156     /**
157      * Sets the value of the recordcount property.
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      * Gets the value of the offset property.
170      * 
171      */
172     public long getOffset() {
173         return offset;
174     }
175 
176     /**
177      * Sets the value of the offset property.
178      * 
179      */
180     public void setOffset(long value) {
181         this.offset = value;
182     }
183 
184     public boolean isSetOffset() {
185         return true;
186     }
187 
188 }