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.XmlType;
6   
7   /**
8    * <p>
9    * Java class for QueryTooLargeException complex type.
10   * <p>
11   * The following schema fragment specifies the expected content contained within
12   * this class.
13   * 
14   * <pre>
15   * &lt;complexType name="QueryTooLargeException">
16   *   &lt;complexContent>
17   *     &lt;extension base="{urn:epcglobal:epcis-query:xsd:1}EPCISException">
18   *       &lt;sequence>
19   *         &lt;element name="queryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
20   *         &lt;element name="subscriptionID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21   *       &lt;/sequence>
22   *     &lt;/extension>
23   *   &lt;/complexContent>
24   * &lt;/complexType>
25   * </pre>
26   */
27  @XmlAccessorType(XmlAccessType.FIELD)
28  @XmlType(name = "QueryTooLargeException", propOrder = { "queryName", "subscriptionID" })
29  public class QueryTooLargeException extends EPCISException {
30  
31      protected String queryName;
32      protected String subscriptionID;
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      /**
54       * Gets the value of the subscriptionID property.
55       * 
56       * @return possible object is {@link String }
57       */
58      public String getSubscriptionID() {
59          return subscriptionID;
60      }
61  
62      /**
63       * Sets the value of the subscriptionID property.
64       * 
65       * @param value
66       *            allowed object is {@link String }
67       */
68      public void setSubscriptionID(String value) {
69          this.subscriptionID = value;
70      }
71  
72  }