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

org.nmdp.ngs.sra.jaxb.sample.IdentifierType 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:08 AM CDT 
//


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

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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * Set of record identifiers.
 * 
 * 

Java class for IdentifierType complex type. * *

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

 * <complexType name="IdentifierType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PRIMARY_ID" type="{SRA.common}NameType" minOccurs="0"/>
 *         <element name="SECONDARY_ID" type="{SRA.common}NameType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="EXTERNAL_ID" type="{SRA.common}QualifiedNameType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="SUBMITTER_ID" type="{SRA.common}QualifiedNameType" minOccurs="0"/>
 *         <element name="UUID" type="{SRA.common}NameType" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IdentifierType", propOrder = { "primaryId", "secondaryIds", "externalIds", "submitterId", "uuids" }) public class IdentifierType { @XmlElement(name = "PRIMARY_ID") protected NameType primaryId; @XmlElement(name = "SECONDARY_ID") protected List secondaryIds; @XmlElement(name = "EXTERNAL_ID") protected List externalIds; @XmlElement(name = "SUBMITTER_ID") protected QualifiedNameType submitterId; @XmlElement(name = "UUID") protected List uuids; /** * Gets the value of the primaryId property. * * @return * possible object is * {@link NameType } * */ public NameType getPrimaryId() { return primaryId; } /** * Sets the value of the primaryId property. * * @param value * allowed object is * {@link NameType } * */ public void setPrimaryId(NameType value) { this.primaryId = value; } /** * Gets the value of the secondaryIds 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 secondaryIds property. * *

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

     *    getSecondaryIds().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NameType } * * */ public List getSecondaryIds() { if (secondaryIds == null) { secondaryIds = new ArrayList(); } return this.secondaryIds; } /** * Gets the value of the externalIds 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 externalIds property. * *

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

     *    getExternalIds().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link QualifiedNameType } * * */ public List getExternalIds() { if (externalIds == null) { externalIds = new ArrayList(); } return this.externalIds; } /** * Gets the value of the submitterId property. * * @return * possible object is * {@link QualifiedNameType } * */ public QualifiedNameType getSubmitterId() { return submitterId; } /** * Sets the value of the submitterId property. * * @param value * allowed object is * {@link QualifiedNameType } * */ public void setSubmitterId(QualifiedNameType value) { this.submitterId = value; } /** * Gets the value of the uuids 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 uuids property. * *

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

     *    getUuids().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy