org.opencds.cqf.tooling.vmr.CS Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.06.24 at 08:44:29 AM MDT
//
package org.opencds.cqf.tooling.vmr;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Coded data in its simplest form, where only the code is not predetermined.
*
* The code system and code system version are implied and fixed by the context in which the CS value occurs.
*
* Due to its highly restricted functionality, CS SHALL only be used for simple structural attributes with highly controlled and stable terminologies where:
* - all codes come from a single code system
* - codes are not reused if their concept is deprecated
* - the publication and extensibility properties of the code system are well described and understood
*
* Java class for CS complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CS">
* <complexContent>
* <extension base="{urn:hl7-org:cdsdt:r2}ANY">
* <attribute name="code" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CS", namespace = "urn:hl7-org:cdsdt:r2")
public class CS
extends ANY
{
@XmlAttribute(name = "code", required = true)
protected String code;
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
}