org.projecthusky.common.hl7cdar2.SC Maven / Gradle / Ivy
/*
* This code is made available under the terms of the Eclipse Public License v1.0
* in the github project https://github.com/project-husky/husky there you also
* find a list of the contributors and the license information.
*
* This project has been developed further and modified by the joined working group Husky
* on the basis of the eHealth Connector opensource project from June 28, 2021,
* whereas medshare GmbH is the initial and main contributor/author of the eHealth Connector.
*
*/
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2020.07.09 um 01:07:39 PM CEST
//
package org.projecthusky.common.hl7cdar2;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* A ST that optionally may have a code attached. The text must always be present if a code is present. The code is
* often a local code.
*
*
*
* Java-Klasse für SC complex type.
*
*
* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="SC">
* <complexContent>
* <extension base="{urn:hl7-org:v3}ST">
* <attribute name="code" type="{urn:hl7-org:v3}cs" />
* <attribute name="codeSystem" type="{urn:hl7-org:v3}uid" />
* <attribute name="codeSystemName" type="{urn:hl7-org:v3}st" />
* <attribute name="codeSystemVersion" type="{urn:hl7-org:v3}st" />
* <attribute name="displayName" type="{urn:hl7-org:v3}st" />
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SC")
public class SC extends ST {
@XmlAttribute(name = "code")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String code;
@XmlAttribute(name = "codeSystem")
protected String codeSystem;
@XmlAttribute(name = "codeSystemName")
protected String codeSystemName;
@XmlAttribute(name = "codeSystemVersion")
protected String codeSystemVersion;
@XmlAttribute(name = "displayName")
protected String displayName;
public SC() {
}
public SC(final String ed) {
super(ed);
}
public SC(final String ed,
final String language) {
super(ed, language);
}
/**
* Ruft den Wert der code-Eigenschaft ab.
*
* @return possible object is {@link String }
*/
public String getCode() {
return code;
}
/**
* Ruft den Wert der codeSystem-Eigenschaft ab.
*
* @return possible object is {@link String }
*/
public String getCodeSystem() {
return codeSystem;
}
/**
* Ruft den Wert der codeSystemName-Eigenschaft ab.
*
* @return possible object is {@link String }
*/
public String getCodeSystemName() {
return codeSystemName;
}
/**
* Ruft den Wert der codeSystemVersion-Eigenschaft ab.
*
* @return possible object is {@link String }
*/
public String getCodeSystemVersion() {
return codeSystemVersion;
}
/**
* Ruft den Wert der displayName-Eigenschaft ab.
*
* @return possible object is {@link String }
*/
public String getDisplayName() {
return displayName;
}
/**
* Legt den Wert der code-Eigenschaft fest.
*
* @param value allowed object is {@link String }
*/
public void setCode(String value) {
this.code = value;
}
/**
* Legt den Wert der codeSystem-Eigenschaft fest.
*
* @param value allowed object is {@link String }
*/
public void setCodeSystem(String value) {
this.codeSystem = value;
}
/**
* Legt den Wert der codeSystemName-Eigenschaft fest.
*
* @param value allowed object is {@link String }
*/
public void setCodeSystemName(String value) {
this.codeSystemName = value;
}
/**
* Legt den Wert der codeSystemVersion-Eigenschaft fest.
*
* @param value allowed object is {@link String }
*/
public void setCodeSystemVersion(String value) {
this.codeSystemVersion = value;
}
/**
* Legt den Wert der displayName-Eigenschaft fest.
*
* @param value allowed object is {@link String }
*/
public void setDisplayName(String value) {
this.displayName = value;
}
}