org.nmdp.gl.client.xml.jaxb.GlResource 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Abstract class for all resources representable in GL String format.
*
* Java class for GlResource complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GlResource">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="glstring" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GlResource", propOrder = {
"id",
"glstring"
})
@XmlSeeAlso({
Genotype.class,
Haplotype.class,
Allele.class,
AlleleList.class,
Locus.class,
GenotypeList.class,
MultilocusUnphasedGenotype.class
})
public abstract class GlResource {
@XmlElement(required = true)
protected String id;
@XmlElement(required = true)
protected String glstring;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the glstring property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGlstring() {
return glstring;
}
/**
* Sets the value of the glstring property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGlstring(String value) {
this.glstring = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy