// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // 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: 2013.10.25 at 12:13:33 AM EDT // package gov.nih.ncgc.bard.capextract.jaxb; import java.math.BigInteger; 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; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="assayShortName"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="250"/> * </restriction> * </simpleType> * </element> * <element name="assayName"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="1000"/> * </restriction> * </simpleType> * </element> * <element name="designedBy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="assayContexts" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}assayContext" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="panels" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="panel" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element ref="{}description" minOccurs="0"/> * </sequence> * <attribute name="id" use="required" type="{}bardID" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element ref="{}link" maxOccurs="unbounded"/> * </sequence> * <attribute name="assayId" type="{}bardID" /> * <attribute name="assayVersion" default="1 "> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="10"/> * </restriction> * </simpleType> * </attribute> * <attribute name="status" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute ref="{}readyForExtraction"/> * <attribute name="assayType"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="Regular"/> * <enumeration value="Panel - Array"/> * <enumeration value="Panel - Group"/> * <enumeration value="Template"/> * </restriction> * </simpleType> * </attribute> * <attribute ref="{}lastUpdated"/> * <attribute ref="{}modifiedBy"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "assayShortName", "assayName", "designedBy", "assayContexts", "panels", "link" }) @XmlRootElement(name = "assay") public class Assay { @XmlElement(required = true, defaultValue = "") protected String assayShortName; @XmlElement(required = true) protected String assayName; protected String designedBy; protected Assay.AssayContexts assayContexts; protected Assay.Panels panels; @XmlElement(required = true) protected List<Link> link; @XmlAttribute protected BigInteger assayId; @XmlAttribute protected String assayVersion; @XmlAttribute(required = true) protected String status; @XmlAttribute protected String readyForExtraction; @XmlAttribute protected String assayType; @XmlAttribute @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastUpdated; @XmlAttribute protected String modifiedBy; /** * Gets the value of the assayShortName property. * * @return * possible object is * {@link String } * */ public String getAssayShortName() { return assayShortName; } /** * Sets the value of the assayShortName property. * * @param value * allowed object is * {@link String } * */ public void setAssayShortName(String value) { this.assayShortName = value; } /** * Gets the value of the assayName property. * * @return * possible object is * {@link String } * */ public String getAssayName() { return assayName; } /** * Sets the value of the assayName property. * * @param value * allowed object is * {@link String } * */ public void setAssayName(String value) { this.assayName = value; } /** * Gets the value of the designedBy property. * * @return * possible object is * {@link String } * */ public String getDesignedBy() { return designedBy; } /** * Sets the value of the designedBy property. * * @param value * allowed object is * {@link String } * */ public void setDesignedBy(String value) { this.designedBy = value; } /** * Gets the value of the assayContexts property. * * @return * possible object is * {@link Assay.AssayContexts } * */ public Assay.AssayContexts getAssayContexts() { return assayContexts; } /** * Sets the value of the assayContexts property. * * @param value * allowed object is * {@link Assay.AssayContexts } * */ public void setAssayContexts(Assay.AssayContexts value) { this.assayContexts = value; } /** * Gets the value of the panels property. * * @return * possible object is * {@link Assay.Panels } * */ public Assay.Panels getPanels() { return panels; } /** * Sets the value of the panels property. * * @param value * allowed object is * {@link Assay.Panels } * */ public void setPanels(Assay.Panels value) { this.panels = value; } /** * Gets the value of the link property. * * <p> * 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 <CODE>set</CODE> method for the link property. * * <p> * For example, to add a new item, do as follows: * <pre> * getLink().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Link } * * */ public List<Link> getLink() { if (link == null) { link = new ArrayList<Link>(); } return this.link; } /** * Gets the value of the assayId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getAssayId() { return assayId; } /** * Sets the value of the assayId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setAssayId(BigInteger value) { this.assayId = value; } /** * Gets the value of the assayVersion property. * * @return * possible object is * {@link String } * */ public String getAssayVersion() { if (assayVersion == null) { return "1 "; } else { return assayVersion; } } /** * Sets the value of the assayVersion property. * * @param value * allowed object is * {@link String } * */ public void setAssayVersion(String value) { this.assayVersion = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the readyForExtraction property. * * @return * possible object is * {@link String } * */ public String getReadyForExtraction() { return readyForExtraction; } /** * Sets the value of the readyForExtraction property. * * @param value * allowed object is * {@link String } * */ public void setReadyForExtraction(String value) { this.readyForExtraction = value; } /** * Gets the value of the assayType property. * * @return * possible object is * {@link String } * */ public String getAssayType() { return assayType; } /** * Sets the value of the assayType property. * * @param value * allowed object is * {@link String } * */ public void setAssayType(String value) { this.assayType = value; } /** * Gets the value of the lastUpdated property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastUpdated() { return lastUpdated; } /** * Sets the value of the lastUpdated property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastUpdated(XMLGregorianCalendar value) { this.lastUpdated = value; } /** * Gets the value of the modifiedBy property. * * @return * possible object is * {@link String } * */ public String getModifiedBy() { return modifiedBy; } /** * Sets the value of the modifiedBy property. * * @param value * allowed object is * {@link String } * */ public void setModifiedBy(String value) { this.modifiedBy = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}assayContext" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "assayContext" }) public static class AssayContexts { @XmlElement(required = true) protected List<AssayContexType> assayContext; /** * Gets the value of the assayContext property. * * <p> * 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 <CODE>set</CODE> method for the assayContext property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAssayContext().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AssayContexType } * * */ public List<AssayContexType> getAssayContext() { if (assayContext == null) { assayContext = new ArrayList<AssayContexType>(); } return this.assayContext; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="panel" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element ref="{}description" minOccurs="0"/> * </sequence> * <attribute name="id" use="required" type="{}bardID" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "panel" }) public static class Panels { protected List<Assay.Panels.Panel> panel; /** * Gets the value of the panel property. * * <p> * 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 <CODE>set</CODE> method for the panel property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPanel().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Assay.Panels.Panel } * * */ public List<Assay.Panels.Panel> getPanel() { if (panel == null) { panel = new ArrayList<Assay.Panels.Panel>(); } return this.panel; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element ref="{}description" minOccurs="0"/> * </sequence> * <attribute name="id" use="required" type="{}bardID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name", "description" }) public static class Panel { @XmlElement(required = true) protected String name; @XmlElement(nillable = true) protected String description; @XmlAttribute(required = true) protected BigInteger id; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId(BigInteger value) { this.id = value; } } } }