All Downloads are FREE. Search and download functionalities are using the official Maven repository.

riv.ehr.patientsummary._1.EHREXTRACT Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

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.XmlType;


/**
 * 
 *         The root node of an EHR Extract.
 *       
 * 
 * 

Java class for EHR_EXTRACT complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="EHR_EXTRACT">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="authorising_party" type="{urn:riv:ehr:patientsummary:1}II" minOccurs="0"/>
 *         <element name="ehr_id" type="{urn:riv:ehr:patientsummary:1}II"/>
 *         <element name="ehr_system" type="{urn:riv:ehr:patientsummary:1}II"/>
 *         <element name="rm_id" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
 *         <element name="subject_of_care" type="{urn:riv:ehr:patientsummary:1}II"/>
 *         <element name="time_created" type="{urn:riv:ehr:patientsummary:1}TS"/>
 *         <element name="all_compositions" type="{urn:riv:ehr:patientsummary:1}COMPOSITION" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="criteria" type="{urn:riv:ehr:patientsummary:1}EXTRACT_CRITERIA" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="folders" type="{urn:riv:ehr:patientsummary:1}FOLDER" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="demographic_extract" type="{urn:riv:ehr:patientsummary:1}IDENTIFIED_ENTITY" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EHR_EXTRACT", propOrder = { "authorisingParty", "ehrId", "ehrSystem", "rmId", "subjectOfCare", "timeCreated", "allCompositions", "criteria", "folders", "demographicExtract" }) public class EHREXTRACT { @XmlElement(name = "authorising_party") protected II authorisingParty; @XmlElement(name = "ehr_id", required = true) protected II ehrId; @XmlElement(name = "ehr_system", required = true) protected II ehrSystem; @XmlElement(name = "rm_id", required = true) protected Object rmId; @XmlElement(name = "subject_of_care", required = true) protected II subjectOfCare; @XmlElement(name = "time_created", required = true) protected TS timeCreated; @XmlElement(name = "all_compositions") protected List allCompositions; protected List criteria; protected List folders; @XmlElement(name = "demographic_extract") protected List demographicExtract; /** * Gets the value of the authorisingParty property. * * @return * possible object is * {@link II } * */ public II getAuthorisingParty() { return authorisingParty; } /** * Sets the value of the authorisingParty property. * * @param value * allowed object is * {@link II } * */ public void setAuthorisingParty(II value) { this.authorisingParty = value; } /** * Gets the value of the ehrId property. * * @return * possible object is * {@link II } * */ public II getEhrId() { return ehrId; } /** * Sets the value of the ehrId property. * * @param value * allowed object is * {@link II } * */ public void setEhrId(II value) { this.ehrId = value; } /** * Gets the value of the ehrSystem property. * * @return * possible object is * {@link II } * */ public II getEhrSystem() { return ehrSystem; } /** * Sets the value of the ehrSystem property. * * @param value * allowed object is * {@link II } * */ public void setEhrSystem(II value) { this.ehrSystem = value; } /** * Gets the value of the rmId property. * * @return * possible object is * {@link Object } * */ public Object getRmId() { return rmId; } /** * Sets the value of the rmId property. * * @param value * allowed object is * {@link Object } * */ public void setRmId(Object value) { this.rmId = value; } /** * Gets the value of the subjectOfCare property. * * @return * possible object is * {@link II } * */ public II getSubjectOfCare() { return subjectOfCare; } /** * Sets the value of the subjectOfCare property. * * @param value * allowed object is * {@link II } * */ public void setSubjectOfCare(II value) { this.subjectOfCare = value; } /** * Gets the value of the timeCreated property. * * @return * possible object is * {@link TS } * */ public TS getTimeCreated() { return timeCreated; } /** * Sets the value of the timeCreated property. * * @param value * allowed object is * {@link TS } * */ public void setTimeCreated(TS value) { this.timeCreated = value; } /** * Gets the value of the allCompositions 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 allCompositions property. * *

* For example, to add a new item, do as follows: *

     *    getAllCompositions().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link COMPOSITION } * * */ public List getAllCompositions() { if (allCompositions == null) { allCompositions = new ArrayList(); } return this.allCompositions; } /** * Gets the value of the criteria 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 criteria property. * *

* For example, to add a new item, do as follows: *

     *    getCriteria().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link EXTRACTCRITERIA } * * */ public List getCriteria() { if (criteria == null) { criteria = new ArrayList(); } return this.criteria; } /** * Gets the value of the folders 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 folders property. * *

* For example, to add a new item, do as follows: *

     *    getFolders().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FOLDER } * * */ public List getFolders() { if (folders == null) { folders = new ArrayList(); } return this.folders; } /** * Gets the value of the demographicExtract 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 demographicExtract property. * *

* For example, to add a new item, do as follows: *

     *    getDemographicExtract().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link IDENTIFIEDENTITY } * * */ public List getDemographicExtract() { if (demographicExtract == null) { demographicExtract = new ArrayList(); } return this.demographicExtract; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy