All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nmdp.ngs.sra.jaxb.common.PipelineType 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:48:05 AM CDT 
//


package org.nmdp.ngs.sra.jaxb.common;

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.XmlType;


/**
 *  The PipelineType identifies the sequence or tree of actions to
 *                 process the sequencing data. 
 * 
 * 

Java class for PipelineType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PipelineType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PIPE_SECTION" maxOccurs="unbounded">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="STEP_INDEX" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="PREV_STEP_INDEX" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
 *                   <element name="PROGRAM" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="VERSION" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="NOTES" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                 </sequence>
 *                 <attribute name="section_name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PipelineType", propOrder = { "pipeSections" }) public class PipelineType { @XmlElement(name = "PIPE_SECTION", required = true) protected List pipeSections; /** * Gets the value of the pipeSections 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 pipeSections property. * *

* For example, to add a new item, do as follows: *

     *    getPipeSections().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PipelineType.PipeSection } * * */ public List getPipeSections() { if (pipeSections == null) { pipeSections = new ArrayList(); } return this.pipeSections; } /** *

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="STEP_INDEX" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="PREV_STEP_INDEX" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
     *         <element name="PROGRAM" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="VERSION" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="NOTES" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *       </sequence>
     *       <attribute name="section_name" type="{http://www.w3.org/2001/XMLSchema}string" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "stepIndex", "prevStepIndices", "program", "version", "notes" }) public static class PipeSection { @XmlElement(name = "STEP_INDEX", required = true) protected String stepIndex; @XmlElement(name = "PREV_STEP_INDEX", required = true, nillable = true) protected List prevStepIndices; @XmlElement(name = "PROGRAM", required = true) protected String program; @XmlElement(name = "VERSION", required = true) protected String version; @XmlElement(name = "NOTES") protected String notes; @XmlAttribute(name = "section_name") protected String sectionName; /** * Gets the value of the stepIndex property. * * @return * possible object is * {@link String } * */ public String getStepIndex() { return stepIndex; } /** * Sets the value of the stepIndex property. * * @param value * allowed object is * {@link String } * */ public void setStepIndex(String value) { this.stepIndex = value; } /** * Gets the value of the prevStepIndices 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 prevStepIndices property. * *

* For example, to add a new item, do as follows: *

         *    getPrevStepIndices().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getPrevStepIndices() { if (prevStepIndices == null) { prevStepIndices = new ArrayList(); } return this.prevStepIndices; } /** * Gets the value of the program property. * * @return * possible object is * {@link String } * */ public String getProgram() { return program; } /** * Sets the value of the program property. * * @param value * allowed object is * {@link String } * */ public void setProgram(String value) { this.program = value; } /** * 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; } /** * Gets the value of the notes property. * * @return * possible object is * {@link String } * */ public String getNotes() { return notes; } /** * Sets the value of the notes property. * * @param value * allowed object is * {@link String } * */ public void setNotes(String value) { this.notes = value; } /** * Gets the value of the sectionName property. * * @return * possible object is * {@link String } * */ public String getSectionName() { return sectionName; } /** * Sets the value of the sectionName property. * * @param value * allowed object is * {@link String } * */ public void setSectionName(String value) { this.sectionName = value; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy