riv.ehr.patientsummary._1.ENXP Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ENXP complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ENXP">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="code" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="codeSystem" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="codeSystemVersion" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="language" type="{urn:riv:ehr:patientsummary:1}Code" />
* <attribute name="type" type="{urn:riv:ehr:patientsummary:1}EntityNamePartType" />
* <attribute name="qualifier" type="{urn:riv:ehr:patientsummary:1}set_EntityNamePartQualifier" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ENXP")
public class ENXP {
@XmlAttribute(name = "value")
protected String value;
@XmlAttribute(name = "code")
protected String code;
@XmlAttribute(name = "codeSystem")
protected String codeSystem;
@XmlAttribute(name = "codeSystemVersion")
protected String codeSystemVersion;
@XmlAttribute(name = "language")
protected String language;
@XmlAttribute(name = "type")
protected EntityNamePartType type;
@XmlAttribute(name = "qualifier")
protected List qualifier;
/**
* 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 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;
}
/**
* Gets the value of the codeSystem property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeSystem() {
return codeSystem;
}
/**
* Sets the value of the codeSystem property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeSystem(String value) {
this.codeSystem = value;
}
/**
* Gets the value of the codeSystemVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeSystemVersion() {
return codeSystemVersion;
}
/**
* Sets the value of the codeSystemVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeSystemVersion(String value) {
this.codeSystemVersion = value;
}
/**
* Gets the value of the language property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguage(String value) {
this.language = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link EntityNamePartType }
*
*/
public EntityNamePartType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link EntityNamePartType }
*
*/
public void setType(EntityNamePartType value) {
this.type = value;
}
/**
* Gets the value of the qualifier property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the qualifier property.
*
*
* For example, to add a new item, do as follows:
*
* getQualifier().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link EntityNamePartQualifier }
*
*
*/
public List getQualifier() {
if (qualifier == null) {
qualifier = new ArrayList();
}
return this.qualifier;
}
}