org.nmdp.ngs.hml.jaxb.Ssp 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.03 at 09:54:38 AM CDT
//
package org.nmdp.ngs.hml.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.XmlType;
/**
*
* Specifies an SSP (sequence-specific primer) test that was performed for
* this sample. Kit information and scores must be identified to allow for
* later test re-interpretation.
*
* Children:
* ---------
* Allows an OPTIONAL "property" element that may have nested/custom
* use data related to this typing-method.
*
* Attributes:
* -----------
* - locus: locus for multi-locus targets (optional)
* - test-id: Test ID as registered with the test-id-source.
* - test-id-source: A formal or formal test registry location. For
* example, this could be the NCBI GTR (specified as "GTR"),
* NMDP for tests registered directly with NMDP (specified as
* "NMDP), etc. (required if test-id is used)
* - scores: The results of the SSP test, specified as one string
* (ex: "118111100181")
*
* NMDP allows the following test-id-source values:
* (Note that this may change in future versions)
* * gtr: ID of kit registered with the NCBI Genetic
* Testing Registry. (Preferred)
* * nmdp-refid: ID of kit registered with NMDP. The cardinal
* sequence numbers of the registered probes in the
* kit will determine the score order.
* * probe-name: Fully qualified probe name. If this attribute is
* used, the scores attribute must contain exactly
* one score. (ex: "L0999.K1.V1.A9F-S11")
*
*
* Java class for ssp complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ssp">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="property" type="{http://schemas.nmdp.org/spec/hml/1.0.1}property" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="locus" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="test-id">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="test-id-source" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="scores" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ssp", propOrder = {
"property"
})
public class Ssp {
protected List property;
@XmlAttribute(name = "locus")
protected String locus;
@XmlAttribute(name = "test-id")
protected String testId;
@XmlAttribute(name = "test-id-source")
protected String testIdSource;
@XmlAttribute(name = "scores", required = true)
protected String scores;
/**
* Gets the value of the property 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 property property.
*
*
* For example, to add a new item, do as follows:
*
* getProperty().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Property }
*
*
*/
public List getProperty() {
if (property == null) {
property = new ArrayList();
}
return this.property;
}
/**
* Gets the value of the locus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocus() {
return locus;
}
/**
* Sets the value of the locus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocus(String value) {
this.locus = value;
}
/**
* Gets the value of the testId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTestId() {
return testId;
}
/**
* Sets the value of the testId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTestId(String value) {
this.testId = value;
}
/**
* Gets the value of the testIdSource property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTestIdSource() {
return testIdSource;
}
/**
* Sets the value of the testIdSource property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTestIdSource(String value) {
this.testIdSource = value;
}
/**
* Gets the value of the scores property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getScores() {
return scores;
}
/**
* Sets the value of the scores property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setScores(String value) {
this.scores = value;
}
}