org.opencds.cqf.tooling.vmr.Entity 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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* A physical thing, group of physical things or an organization. It is a concrete class that can be used as is or specialized as needed.
*
* Java class for Entity complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Entity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="templateId" type="{urn:hl7-org:vmr:r2}CodedIdentifier" maxOccurs="unbounded" minOccurs="0"/>
* <element name="id" type="{urn:hl7-org:cdsdt:r2}II" minOccurs="0"/>
* <element name="description" type="{urn:hl7-org:cdsdt:r2}ST" minOccurs="0"/>
* <element name="type" type="{urn:hl7-org:cdsdt:r2}CD" minOccurs="0"/>
* <element name="evaluatedPersonId" type="{urn:hl7-org:cdsdt:r2}II" minOccurs="0"/>
* <element name="attribute" type="{urn:hl7-org:vmr:r2}NameValuePair" maxOccurs="unbounded" minOccurs="0"/>
* <element name="relatedEntity" type="{urn:hl7-org:vmr:r2}RelatedEntity" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Entity", propOrder = {
"templateId",
"id",
"description",
"type",
"evaluatedPersonId",
"attribute",
"relatedEntity"
})
@XmlSeeAlso({
AdministrableSubstance.class,
Device.class,
Facility.class,
Organization.class,
Person.class,
Specimen.class
})
public class Entity {
protected List templateId;
protected II id;
protected ST description;
protected CD type;
protected II evaluatedPersonId;
protected List attribute;
protected List relatedEntity;
/**
* Gets the value of the templateId 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 templateId property.
*
*
* For example, to add a new item, do as follows:
*
* getTemplateId().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CodedIdentifier }
*
*
*/
public List getTemplateId() {
if (templateId == null) {
templateId = new ArrayList();
}
return this.templateId;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link II }
*
*/
public II getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link II }
*
*/
public void setId(II value) {
this.id = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link ST }
*
*/
public ST getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link ST }
*
*/
public void setDescription(ST value) {
this.description = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setType(CD value) {
this.type = value;
}
/**
* Gets the value of the evaluatedPersonId property.
*
* @return
* possible object is
* {@link II }
*
*/
public II getEvaluatedPersonId() {
return evaluatedPersonId;
}
/**
* Sets the value of the evaluatedPersonId property.
*
* @param value
* allowed object is
* {@link II }
*
*/
public void setEvaluatedPersonId(II value) {
this.evaluatedPersonId = value;
}
/**
* Gets the value of the attribute 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 attribute property.
*
*
* For example, to add a new item, do as follows:
*
* getAttribute().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NameValuePair }
*
*
*/
public List getAttribute() {
if (attribute == null) {
attribute = new ArrayList();
}
return this.attribute;
}
/**
* Gets the value of the relatedEntity 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 relatedEntity property.
*
*
* For example, to add a new item, do as follows:
*
* getRelatedEntity().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RelatedEntity }
*
*
*/
public List getRelatedEntity() {
if (relatedEntity == null) {
relatedEntity = new ArrayList();
}
return this.relatedEntity;
}
}