View Javadoc
1   
2   package org.miloss.fgsms.services.interfaces.dataaccessservice;
3   
4   import java.io.Serializable;
5   import java.util.ArrayList;
6   import java.util.List;
7   import javax.xml.bind.annotation.XmlAccessType;
8   import javax.xml.bind.annotation.XmlAccessorType;
9   import javax.xml.bind.annotation.XmlElement;
10  import javax.xml.bind.annotation.XmlType;
11  
12  
13  /**
14   * wrapper
15   * 
16   * <p>Java class for QuickStatURIWrapper complex type.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * 
20   * <pre>
21   * &lt;complexType name="QuickStatURIWrapper">
22   *   &lt;complexContent>
23   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24   *       &lt;sequence>
25   *         &lt;element name="uri" type="{http://www.w3.org/2001/XMLSchema}string"/>
26   *         &lt;element name="QuickStatWrapper" type="{urn:org:miloss:fgsms:services:interfaces:dataAccessService}QuickStatWrapper" maxOccurs="unbounded" minOccurs="0"/>
27   *       &lt;/sequence>
28   *     &lt;/restriction>
29   *   &lt;/complexContent>
30   * &lt;/complexType>
31   * </pre>
32   * 
33   * 
34   */
35  @XmlAccessorType(XmlAccessType.FIELD)
36  @XmlType(name = "QuickStatURIWrapper", propOrder = {
37      "uri",
38      "quickStatWrapper"
39  })
40  public class QuickStatURIWrapper
41      implements Serializable
42  {
43  
44      private final static long serialVersionUID = 1L;
45      @XmlElement(required = true)
46      protected String uri;
47      @XmlElement(name = "QuickStatWrapper")
48      protected List<QuickStatWrapper> quickStatWrapper;
49  
50      /**
51       * Gets the value of the uri property.
52       * 
53       * @return
54       *     possible object is
55       *     {@link String }
56       *     
57       */
58      public String getUri() {
59          return uri;
60      }
61  
62      /**
63       * Sets the value of the uri property.
64       * 
65       * @param value
66       *     allowed object is
67       *     {@link String }
68       *     
69       */
70      public void setUri(String value) {
71          this.uri = value;
72      }
73  
74      public boolean isSetUri() {
75          return (this.uri!= null);
76      }
77  
78      /**
79       * Gets the value of the quickStatWrapper property.
80       * 
81       * <p>
82       * This accessor method returns a reference to the live list,
83       * not a snapshot. Therefore any modification you make to the
84       * returned list will be present inside the JAXB object.
85       * This is why there is not a <CODE>set</CODE> method for the quickStatWrapper property.
86       * 
87       * <p>
88       * For example, to add a new item, do as follows:
89       * <pre>
90       *    getQuickStatWrapper().add(newItem);
91       * </pre>
92       * 
93       * 
94       * <p>
95       * Objects of the following type(s) are allowed in the list
96       * {@link QuickStatWrapper }
97       * 
98       * 
99       */
100     public List<QuickStatWrapper> getQuickStatWrapper() {
101         if (quickStatWrapper == null) {
102             quickStatWrapper = new ArrayList<QuickStatWrapper>();
103         }
104         return this.quickStatWrapper;
105     }
106 
107     public boolean isSetQuickStatWrapper() {
108         return ((this.quickStatWrapper!= null)&&(!this.quickStatWrapper.isEmpty()));
109     }
110 
111     public void unsetQuickStatWrapper() {
112         this.quickStatWrapper = null;
113     }
114 
115 }