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 QueryResultsBody 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="QueryResultsBody">
17   *   &lt;complexContent>
18   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19   *       &lt;choice>
20   *         &lt;element name="EventList" type="{urn:epcglobal:epcis:xsd:1}EventListType"/>
21   *         &lt;element name="VocabularyList" type="{urn:epcglobal:epcis-masterdata:xsd:1}VocabularyListType"/>
22   *       &lt;/choice>
23   *     &lt;/restriction>
24   *   &lt;/complexContent>
25   * &lt;/complexType>
26   * </pre>
27   */
28  @XmlAccessorType(XmlAccessType.FIELD)
29  @XmlType(name = "QueryResultsBody", propOrder = { "eventList", "vocabularyList" })
30  public class QueryResultsBody {
31  
32      @XmlElement(name = "EventList")
33      protected EventListType eventList;
34      @XmlElement(name = "VocabularyList")
35      protected VocabularyListType vocabularyList;
36  
37      /**
38       * Gets the value of the eventList property.
39       * 
40       * @return possible object is {@link EventListType }
41       */
42      public EventListType getEventList() {
43          return eventList;
44      }
45  
46      /**
47       * Sets the value of the eventList property.
48       * 
49       * @param value
50       *            allowed object is {@link EventListType }
51       */
52      public void setEventList(EventListType value) {
53          this.eventList = value;
54      }
55  
56      /**
57       * Gets the value of the vocabularyList property.
58       * 
59       * @return possible object is {@link VocabularyListType }
60       */
61      public VocabularyListType getVocabularyList() {
62          return vocabularyList;
63      }
64  
65      /**
66       * Sets the value of the vocabularyList property.
67       * 
68       * @param value
69       *            allowed object is {@link VocabularyListType }
70       */
71      public void setVocabularyList(VocabularyListType value) {
72          this.vocabularyList = value;
73      }
74  
75  }