org.nmdp.ngs.gtr.jaxb.GTRPublicData Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.06.22 at 10:44:47 AM CDT
//
package org.nmdp.ngs.gtr.jaxb;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for GTRPublicDataType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GTRPublicDataType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GTRLabData" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GTRLab" type="{}GTROrgType"/>
* <element name="GTRLabTest" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <extension base="{}GTRLabTestType">
* <attribute name="LastUpdate" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="LastTouched" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
* </element>
* <element name="GTRLabResearchTest" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <extension base="{}GTRLabResearchTestType">
* <attribute name="LastUpdate" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="LastTouched" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="Version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GTRPublicDataType", propOrder = {
"gtrLabDatas"
})
@XmlRootElement(name = "GTRPublicData")
public class GTRPublicData {
@XmlElement(name = "GTRLabData")
protected List gtrLabDatas;
@XmlAttribute(name = "Version", required = true)
protected String version;
/**
* Gets the value of the gtrLabDatas property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the gtrLabDatas property.
*
*
* For example, to add a new item, do as follows:
*
* getGTRLabDatas().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GTRPublicData.GTRLabData }
*
*
*/
public List getGTRLabDatas() {
if (gtrLabDatas == null) {
gtrLabDatas = new ArrayList();
}
return this.gtrLabDatas;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GTRLab" type="{}GTROrgType"/>
* <element name="GTRLabTest" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <extension base="{}GTRLabTestType">
* <attribute name="LastUpdate" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="LastTouched" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
* </element>
* <element name="GTRLabResearchTest" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <extension base="{}GTRLabResearchTestType">
* <attribute name="LastUpdate" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="LastTouched" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"gtrLab",
"gtrLabTests",
"gtrLabResearchTests"
})
public static class GTRLabData {
@XmlElement(name = "GTRLab", required = true)
protected GTROrgType gtrLab;
@XmlElement(name = "GTRLabTest")
protected List gtrLabTests;
@XmlElement(name = "GTRLabResearchTest")
protected List gtrLabResearchTests;
/**
* Gets the value of the gtrLab property.
*
* @return
* possible object is
* {@link GTROrgType }
*
*/
public GTROrgType getGTRLab() {
return gtrLab;
}
/**
* Sets the value of the gtrLab property.
*
* @param value
* allowed object is
* {@link GTROrgType }
*
*/
public void setGTRLab(GTROrgType value) {
this.gtrLab = value;
}
/**
* Gets the value of the gtrLabTests property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the gtrLabTests property.
*
*
* For example, to add a new item, do as follows:
*
* getGTRLabTests().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GTRPublicData.GTRLabData.GTRLabTest }
*
*
*/
public List getGTRLabTests() {
if (gtrLabTests == null) {
gtrLabTests = new ArrayList();
}
return this.gtrLabTests;
}
/**
* Gets the value of the gtrLabResearchTests property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the gtrLabResearchTests property.
*
*
* For example, to add a new item, do as follows:
*
* getGTRLabResearchTests().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GTRPublicData.GTRLabData.GTRLabResearchTest }
*
*
*/
public List getGTRLabResearchTests() {
if (gtrLabResearchTests == null) {
gtrLabResearchTests = new ArrayList();
}
return this.gtrLabResearchTests;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{}GTRLabResearchTestType">
* <attribute name="LastUpdate" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="LastTouched" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class GTRLabResearchTest
extends GTRLabResearchTestType
{
@XmlAttribute(name = "LastUpdate", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastUpdate;
@XmlAttribute(name = "LastTouched", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastTouched;
@XmlAttribute(name = "source")
protected String source;
/**
* Gets the value of the lastUpdate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastUpdate() {
return lastUpdate;
}
/**
* Sets the value of the lastUpdate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastUpdate(XMLGregorianCalendar value) {
this.lastUpdate = value;
}
/**
* Gets the value of the lastTouched property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastTouched() {
return lastTouched;
}
/**
* Sets the value of the lastTouched property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastTouched(XMLGregorianCalendar value) {
this.lastTouched = value;
}
/**
* Gets the value of the source property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSource() {
return source;
}
/**
* Sets the value of the source property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSource(String value) {
this.source = value;
}
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{}GTRLabTestType">
* <attribute name="LastUpdate" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="LastTouched" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class GTRLabTest
extends GTRLabTestType
{
@XmlAttribute(name = "LastUpdate", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastUpdate;
@XmlAttribute(name = "LastTouched", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastTouched;
@XmlAttribute(name = "source")
protected String source;
/**
* Gets the value of the lastUpdate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastUpdate() {
return lastUpdate;
}
/**
* Sets the value of the lastUpdate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastUpdate(XMLGregorianCalendar value) {
this.lastUpdate = value;
}
/**
* Gets the value of the lastTouched property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastTouched() {
return lastTouched;
}
/**
* Sets the value of the lastTouched property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastTouched(XMLGregorianCalendar value) {
this.lastTouched = value;
}
/**
* Gets the value of the source property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSource() {
return source;
}
/**
* Sets the value of the source property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSource(String value) {
this.source = value;
}
}
}
}