org.nmdp.gl.client.xml.jaxb.Allele Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gl-client Show documentation
Show all versions of gl-client Show documentation
Client library for the URI-based RESTful service for the gl project.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.05.26 at 09:52:20 PM CDT
//
package org.nmdp.gl.client.xml.jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* An allele describes variation at a particular locus. The allele representation in GL String format must not contain any of the following characters: '/', '~', '+', '|', '^'.
*
* Java class for Allele complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Allele">
* <complexContent>
* <extension base="{https://gl.immunogenomics.org/gl-resource}GlResource">
* <sequence>
* <element name="accession" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="locus" type="{https://gl.immunogenomics.org/gl-resource}Locus"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Allele", propOrder = {
"accession",
"locus"
})
public class Allele
extends GlResource
{
@XmlElement(required = true)
protected String accession;
@XmlElement(required = true)
protected Locus locus;
/**
* Gets the value of the accession property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccession() {
return accession;
}
/**
* Sets the value of the accession property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccession(String value) {
this.accession = value;
}
/**
* Gets the value of the locus property.
*
* @return
* possible object is
* {@link Locus }
*
*/
public Locus getLocus() {
return locus;
}
/**
* Sets the value of the locus property.
*
* @param value
* allowed object is
* {@link Locus }
*
*/
public void setLocus(Locus value) {
this.locus = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy