View Javadoc

1   package org.fosstrak.epcis.model;
2   
3   import javax.xml.bind.annotation.XmlAccessType;
4   import javax.xml.bind.annotation.XmlAccessorType;
5   import javax.xml.bind.annotation.XmlElement;
6   import javax.xml.bind.annotation.XmlType;
7   
8   /**
9    * <p>
10   * Java class for GetSubscriptionIDs complex type.
11   * <p>
12   * The following schema fragment specifies the expected content contained within
13   * this class.
14   * 
15   * <pre>
16   * &lt;complexType name="GetSubscriptionIDs">
17   *   &lt;complexContent>
18   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19   *       &lt;sequence>
20   *         &lt;element name="queryName" type="{http://www.w3.org/2001/XMLSchema}string"/>
21   *       &lt;/sequence>
22   *     &lt;/restriction>
23   *   &lt;/complexContent>
24   * &lt;/complexType>
25   * </pre>
26   */
27  @XmlAccessorType(XmlAccessType.FIELD)
28  @XmlType(name = "GetSubscriptionIDs", propOrder = { "queryName" })
29  public class GetSubscriptionIDs {
30  
31      @XmlElement(required = true)
32      protected String queryName;
33  
34      /**
35       * Gets the value of the queryName property.
36       * 
37       * @return possible object is {@link String }
38       */
39      public String getQueryName() {
40          return queryName;
41      }
42  
43      /**
44       * Sets the value of the queryName property.
45       * 
46       * @param value
47       *            allowed object is {@link String }
48       */
49      public void setQueryName(String value) {
50          this.queryName = value;
51      }
52  
53  }