org.immregistries.codebase.client.generated.Code Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codebase-client Show documentation
Show all versions of codebase-client Show documentation
Reads the Codebase XML and provides helper classes to use it.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.10.28 at 12:30:21 PM EDT
//
package org.immregistries.codebase.client.generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="code-status">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="deprecated" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="new-code-value" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="effective-date" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="reference" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="link-to" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
* <attribute name="codeset" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </simpleContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="use-date" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="not-before" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="not-expected-before" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="not-expected-after" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="not-after" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="use-age" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="not-before-month" type="{http://www.w3.org/2001/XMLSchema}byte"/>
* <element name="not-after-month" type="{http://www.w3.org/2001/XMLSchema}byte"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="concept-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="test-age" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value",
"label",
"description",
"codeStatus",
"reference",
"useDate",
"useAge",
"conceptType",
"testAge"
})
public class Code {
@XmlElement(required = true)
protected String value;
@XmlElement(required = true)
protected String label;
@XmlElement(required = true)
protected String description;
@XmlElement(name = "code-status", required = true)
protected CodeStatus codeStatus;
protected Reference reference;
@XmlElement(name = "use-date")
protected UseDate useDate;
@XmlElement(name = "use-age")
protected UseAge useAge;
@XmlElement(name = "concept-type")
protected String conceptType;
@XmlElement(name = "test-age")
protected String testAge;
/**
* 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 label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the codeStatus property.
*
* @return
* possible object is
* {@link CodeStatus }
*
*/
public CodeStatus getCodeStatus() {
return codeStatus;
}
/**
* Sets the value of the codeStatus property.
*
* @param value
* allowed object is
* {@link CodeStatus }
*
*/
public void setCodeStatus(CodeStatus value) {
this.codeStatus = value;
}
/**
* Gets the value of the reference property.
*
* @return
* possible object is
* {@link Reference }
*
*/
public Reference getReference() {
return reference;
}
/**
* Sets the value of the reference property.
*
* @param value
* allowed object is
* {@link Reference }
*
*/
public void setReference(Reference value) {
this.reference = value;
}
/**
* Gets the value of the useDate property.
*
* @return
* possible object is
* {@link UseDate }
*
*/
public UseDate getUseDate() {
return useDate;
}
/**
* Sets the value of the useDate property.
*
* @param value
* allowed object is
* {@link UseDate }
*
*/
public void setUseDate(UseDate value) {
this.useDate = value;
}
/**
* Gets the value of the useAge property.
*
* @return
* possible object is
* {@link UseAge }
*
*/
public UseAge getUseAge() {
return useAge;
}
/**
* Sets the value of the useAge property.
*
* @param value
* allowed object is
* {@link UseAge }
*
*/
public void setUseAge(UseAge value) {
this.useAge = value;
}
/**
* Gets the value of the conceptType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConceptType() {
return conceptType;
}
/**
* Sets the value of the conceptType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConceptType(String value) {
this.conceptType = value;
}
/**
* Gets the value of the testAge property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTestAge() {
return testAge;
}
/**
* Sets the value of the testAge property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTestAge(String value) {
this.testAge = value;
}
}