org.nmdp.ngs.hml.jaxb.Glstring 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
*
* Specifies a resource in Genotype List String (GL String) format for the
* interpretation of a typing result, or a URI identifying a resource in
* GL String format. For more details about the format and use of GL Strings,
* see (http://www.ncbi.nlm.nih.gov/pubmed/23849068)
*
* * glstring is expected to EITHER contain inline character data OR a
* URI reference to a location that defines/specifies the glstring data.
*
* Attributes:
* -----------
* - uri: Specifies a URI identifying a resource in GL String format for the
* interpretation of a typing result. For more information about the format
* and use of GL Strings, see (http://www.ncbi.nlm.nih.gov/pubmed/23849068).
* (optional)
*
* Data:
* -----
* - resource in GL String representation (string, required)
*
*
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
* <attribute name="uri">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyURI">
* <minLength value="5"/>
* </restriction>
* </simpleType>
* </attribute>
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
@XmlRootElement(name = "glstring")
public class Glstring {
@XmlValue
protected String value;
@XmlAttribute(name = "uri")
protected String uri;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUri() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUri(String value) {
this.uri = value;
}
}