riv.ehr.patientsummary._1.IDENTIFIEDENTITY 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.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
*
* Superclass of all identified parties to the record. Note
* that the type of id is not given in the printed class
* description but is included in the class diagram on page
* 47 of the standard.
*
*
* Java class for IDENTIFIED_ENTITY complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IDENTIFIED_ENTITY">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="extract_id" type="{urn:riv:ehr:patientsummary:1}II"/>
* <element name="id" type="{urn:riv:ehr:patientsummary:1}II" maxOccurs="unbounded" minOccurs="0"/>
* <element name="telecom" type="{urn:riv:ehr:patientsummary:1}TEL" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IDENTIFIED_ENTITY", propOrder = {
"extractId",
"id",
"telecom"
})
@XmlSeeAlso({
SOFTWAREORDEVICE.class,
ORGANISATION.class,
PERSON.class
})
public abstract class IDENTIFIEDENTITY {
@XmlElement(name = "extract_id", required = true)
protected II extractId;
protected List id;
protected List telecom;
/**
* Gets the value of the extractId property.
*
* @return
* possible object is
* {@link II }
*
*/
public II getExtractId() {
return extractId;
}
/**
* Sets the value of the extractId property.
*
* @param value
* allowed object is
* {@link II }
*
*/
public void setExtractId(II value) {
this.extractId = value;
}
/**
* Gets the value of the id 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 id property.
*
*
* For example, to add a new item, do as follows:
*
* getId().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link II }
*
*
*/
public List getId() {
if (id == null) {
id = new ArrayList();
}
return this.id;
}
/**
* Gets the value of the telecom 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 telecom property.
*
*
* For example, to add a new item, do as follows:
*
* getTelecom().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TEL }
*
*
*/
public List getTelecom() {
if (telecom == null) {
telecom = new ArrayList();
}
return this.telecom;
}
}