// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.08.31 at 10:36:23 AM KST // package org.oliot.model.oliot; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for QueryResultsBody complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="QueryResultsBody"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="EventList" type="{epcis.oliot.org}EventListType"/> * <element name="VocabularyList" type="{masterdata.epcis.oliot.org}VocabularyListType"/> * </choice> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QueryResultsBody", namespace = "query.epcis.oliot.org", propOrder = { "eventList", "vocabularyList" }) public class QueryResultsBody { @XmlElement(name = "EventList") protected EventListType eventList; @XmlElement(name = "VocabularyList") protected VocabularyListType vocabularyList; /** * Gets the value of the eventList property. * * @return possible object is {@link EventListType } * */ public EventListType getEventList() { return eventList; } /** * Sets the value of the eventList property. * * @param value * allowed object is {@link EventListType } * */ public void setEventList(EventListType value) { this.eventList = value; } /** * Gets the value of the vocabularyList property. * * @return possible object is {@link VocabularyListType } * */ public VocabularyListType getVocabularyList() { return vocabularyList; } /** * Sets the value of the vocabularyList property. * * @param value * allowed object is {@link VocabularyListType } * */ public void setVocabularyList(VocabularyListType value) { this.vocabularyList = value; } }