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  
11  
12  /**
13   * response message
14   * 
15   * <p>Java class for GetHistoricalBrokerDetailsResponseMsg complex type.
16   * 
17   * <p>The following schema fragment specifies the expected content contained within this class.
18   * 
19   * <pre>
20   * &lt;complexType name="GetHistoricalBrokerDetailsResponseMsg">
21   *   &lt;complexContent>
22   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
23   *       &lt;sequence>
24   *         &lt;element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
25   *         &lt;element name="uri" type="{http://www.w3.org/2001/XMLSchema}string"/>
26   *         &lt;element name="averagemessagesent" type="{http://www.w3.org/2001/XMLSchema}double"/>
27   *         &lt;element name="averagemessagesrecieved" type="{http://www.w3.org/2001/XMLSchema}double"/>
28   *         &lt;element name="averagemessagesdropped" type="{http://www.w3.org/2001/XMLSchema}double"/>
29   *         &lt;element name="averagequeuedepth" type="{http://www.w3.org/2001/XMLSchema}double"/>
30   *         &lt;element name="averageconsumers" type="{http://www.w3.org/2001/XMLSchema}double"/>
31   *         &lt;element name="averageactiveconsumers" type="{http://www.w3.org/2001/XMLSchema}double"/>
32   *         &lt;element name="averagebytesin" type="{http://www.w3.org/2001/XMLSchema}double"/>
33   *         &lt;element name="averagebytesout" type="{http://www.w3.org/2001/XMLSchema}double"/>
34   *         &lt;element name="averagebytesdropped" type="{http://www.w3.org/2001/XMLSchema}double"/>
35   *       &lt;/sequence>
36   *     &lt;/restriction>
37   *   &lt;/complexContent>
38   * &lt;/complexType>
39   * </pre>
40   * 
41   * 
42   */
43  @XmlAccessorType(XmlAccessType.FIELD)
44  @XmlType(name = "GetHistoricalBrokerDetailsResponseMsg", propOrder = {
45      "classification",
46      "uri",
47      "averagemessagesent",
48      "averagemessagesrecieved",
49      "averagemessagesdropped",
50      "averagequeuedepth",
51      "averageconsumers",
52      "averageactiveconsumers",
53      "averagebytesin",
54      "averagebytesout",
55      "averagebytesdropped"
56  })
57  public class GetHistoricalBrokerDetailsResponseMsg
58      implements Serializable
59  {
60  
61      private final static long serialVersionUID = 1L;
62      @XmlElement(required = true, nillable = true)
63      protected SecurityWrapper classification;
64      @XmlElement(required = true)
65      protected String uri;
66      protected double averagemessagesent;
67      protected double averagemessagesrecieved;
68      protected double averagemessagesdropped;
69      protected double averagequeuedepth;
70      protected double averageconsumers;
71      protected double averageactiveconsumers;
72      protected double averagebytesin;
73      protected double averagebytesout;
74      protected double averagebytesdropped;
75  
76      /**
77       * Gets the value of the classification property.
78       * 
79       * @return
80       *     possible object is
81       *     {@link SecurityWrapper }
82       *     
83       */
84      public SecurityWrapper getClassification() {
85          return classification;
86      }
87  
88      /**
89       * Sets the value of the classification property.
90       * 
91       * @param value
92       *     allowed object is
93       *     {@link SecurityWrapper }
94       *     
95       */
96      public void setClassification(SecurityWrapper value) {
97          this.classification = value;
98      }
99  
100     public boolean isSetClassification() {
101         return (this.classification!= null);
102     }
103 
104     /**
105      * Gets the value of the uri property.
106      * 
107      * @return
108      *     possible object is
109      *     {@link String }
110      *     
111      */
112     public String getUri() {
113         return uri;
114     }
115 
116     /**
117      * Sets the value of the uri property.
118      * 
119      * @param value
120      *     allowed object is
121      *     {@link String }
122      *     
123      */
124     public void setUri(String value) {
125         this.uri = value;
126     }
127 
128     public boolean isSetUri() {
129         return (this.uri!= null);
130     }
131 
132     /**
133      * Gets the value of the averagemessagesent property.
134      * 
135      */
136     public double getAveragemessagesent() {
137         return averagemessagesent;
138     }
139 
140     /**
141      * Sets the value of the averagemessagesent property.
142      * 
143      */
144     public void setAveragemessagesent(double value) {
145         this.averagemessagesent = value;
146     }
147 
148     public boolean isSetAveragemessagesent() {
149         return true;
150     }
151 
152     /**
153      * Gets the value of the averagemessagesrecieved property.
154      * 
155      */
156     public double getAveragemessagesrecieved() {
157         return averagemessagesrecieved;
158     }
159 
160     /**
161      * Sets the value of the averagemessagesrecieved property.
162      * 
163      */
164     public void setAveragemessagesrecieved(double value) {
165         this.averagemessagesrecieved = value;
166     }
167 
168     public boolean isSetAveragemessagesrecieved() {
169         return true;
170     }
171 
172     /**
173      * Gets the value of the averagemessagesdropped property.
174      * 
175      */
176     public double getAveragemessagesdropped() {
177         return averagemessagesdropped;
178     }
179 
180     /**
181      * Sets the value of the averagemessagesdropped property.
182      * 
183      */
184     public void setAveragemessagesdropped(double value) {
185         this.averagemessagesdropped = value;
186     }
187 
188     public boolean isSetAveragemessagesdropped() {
189         return true;
190     }
191 
192     /**
193      * Gets the value of the averagequeuedepth property.
194      * 
195      */
196     public double getAveragequeuedepth() {
197         return averagequeuedepth;
198     }
199 
200     /**
201      * Sets the value of the averagequeuedepth property.
202      * 
203      */
204     public void setAveragequeuedepth(double value) {
205         this.averagequeuedepth = value;
206     }
207 
208     public boolean isSetAveragequeuedepth() {
209         return true;
210     }
211 
212     /**
213      * Gets the value of the averageconsumers property.
214      * 
215      */
216     public double getAverageconsumers() {
217         return averageconsumers;
218     }
219 
220     /**
221      * Sets the value of the averageconsumers property.
222      * 
223      */
224     public void setAverageconsumers(double value) {
225         this.averageconsumers = value;
226     }
227 
228     public boolean isSetAverageconsumers() {
229         return true;
230     }
231 
232     /**
233      * Gets the value of the averageactiveconsumers property.
234      * 
235      */
236     public double getAverageactiveconsumers() {
237         return averageactiveconsumers;
238     }
239 
240     /**
241      * Sets the value of the averageactiveconsumers property.
242      * 
243      */
244     public void setAverageactiveconsumers(double value) {
245         this.averageactiveconsumers = value;
246     }
247 
248     public boolean isSetAverageactiveconsumers() {
249         return true;
250     }
251 
252     /**
253      * Gets the value of the averagebytesin property.
254      * 
255      */
256     public double getAveragebytesin() {
257         return averagebytesin;
258     }
259 
260     /**
261      * Sets the value of the averagebytesin property.
262      * 
263      */
264     public void setAveragebytesin(double value) {
265         this.averagebytesin = value;
266     }
267 
268     public boolean isSetAveragebytesin() {
269         return true;
270     }
271 
272     /**
273      * Gets the value of the averagebytesout property.
274      * 
275      */
276     public double getAveragebytesout() {
277         return averagebytesout;
278     }
279 
280     /**
281      * Sets the value of the averagebytesout property.
282      * 
283      */
284     public void setAveragebytesout(double value) {
285         this.averagebytesout = value;
286     }
287 
288     public boolean isSetAveragebytesout() {
289         return true;
290     }
291 
292     /**
293      * Gets the value of the averagebytesdropped property.
294      * 
295      */
296     public double getAveragebytesdropped() {
297         return averagebytesdropped;
298     }
299 
300     /**
301      * Sets the value of the averagebytesdropped property.
302      * 
303      */
304     public void setAveragebytesdropped(double value) {
305         this.averagebytesdropped = value;
306     }
307 
308     public boolean isSetAveragebytesdropped() {
309         return true;
310     }
311 
312 }