// // 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="projectName"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="256"/> * </restriction> * </simpleType> * </element> * <element ref="{}description" minOccurs="0"/> * <element ref="{}contexts" minOccurs="0"/> * <element name="projectExperiments" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}projectExperiment" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element ref="{}projectSteps" minOccurs="0"/> * <element ref="{}link" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="projectId" use="required" type="{}bardID" /> * <attribute name="groupType" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="Project"/> * <enumeration value="Campaign"/> * <enumeration value="Panel"/> * <enumeration value="Study"/> * <enumeration value="Template"/> * <enumeration value="Probe Report"/> * </restriction> * </simpleType> * </attribute> * <attribute ref="{}readyForExtraction use="required""/> * <attribute ref="{}lastUpdated"/> * <attribute ref="{}modifiedBy"/> * <attribute name="status" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "projectName", "description", "contexts", "projectExperiments", "projectSteps", "link" }) @XmlRootElement(name = "project") public class Project { @XmlElement(required = true) protected String projectName; @XmlElement(nillable = true) protected String description; protected Contexts contexts; protected Project.ProjectExperiments projectExperiments; protected ProjectSteps projectSteps; protected List<Link> link; @XmlAttribute(required = true) protected BigInteger projectId; @XmlAttribute(required = true) protected String groupType; @XmlAttribute(required = true) protected String readyForExtraction; @XmlAttribute @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastUpdated; @XmlAttribute protected String modifiedBy; @XmlAttribute(required = true) protected String status; /** * Gets the value of the projectName property. * * @return * possible object is * {@link String } * */ public String getProjectName() { return projectName; } /** * Sets the value of the projectName property. * * @param value * allowed object is * {@link String } * */ public void setProjectName(String value) { this.projectName = value; } /** * Description for current element * * * @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 contexts property. * * @return * possible object is * {@link Contexts } * */ public Contexts getContexts() { return contexts; } /** * Sets the value of the contexts property. * * @param value * allowed object is * {@link Contexts } * */ public void setContexts(Contexts value) { this.contexts = value; } /** * Gets the value of the projectExperiments property. * * @return * possible object is * {@link Project.ProjectExperiments } * */ public Project.ProjectExperiments getProjectExperiments() { return projectExperiments; } /** * Sets the value of the projectExperiments property. * * @param value * allowed object is * {@link Project.ProjectExperiments } * */ public void setProjectExperiments(Project.ProjectExperiments value) { this.projectExperiments = value; } /** * Gets the value of the projectSteps property. * * @return * possible object is * {@link ProjectSteps } * */ public ProjectSteps getProjectSteps() { return projectSteps; } /** * Sets the value of the projectSteps property. * * @param value * allowed object is * {@link ProjectSteps } * */ public void setProjectSteps(ProjectSteps value) { this.projectSteps = 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 projectId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getProjectId() { return projectId; } /** * Sets the value of the projectId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setProjectId(BigInteger value) { this.projectId = value; } /** * Gets the value of the groupType property. * * @return * possible object is * {@link String } * */ public String getGroupType() { return groupType; } /** * Sets the value of the groupType property. * * @param value * allowed object is * {@link String } * */ public void setGroupType(String value) { this.groupType = 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 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; } /** * 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; } /** * <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="{}projectExperiment" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "projectExperiment" }) public static class ProjectExperiments { protected List<ProjectExperiment> projectExperiment; /** * Gets the value of the projectExperiment 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 projectExperiment property. * * <p> * For example, to add a new item, do as follows: * <pre> * getProjectExperiment().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ProjectExperiment } * * */ public List<ProjectExperiment> getProjectExperiment() { if (projectExperiment == null) { projectExperiment = new ArrayList<ProjectExperiment>(); } return this.projectExperiment; } } }