riv.ehr.patientsummary._1.FOLDER 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.XmlType;
/**
*
* Organises and groups Compositions within an EHR Extract.
*
*
* Java class for FOLDER complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FOLDER">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}RECORD_COMPONENT">
* <sequence>
* <element name="sub_folders" type="{urn:riv:ehr:patientsummary:1}FOLDER" maxOccurs="unbounded" minOccurs="0"/>
* <element name="attestations" type="{urn:riv:ehr:patientsummary:1}ATTESTATION_INFO" maxOccurs="unbounded" minOccurs="0"/>
* <element name="composition_rc_ids" type="{urn:riv:ehr:patientsummary:1}ST" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FOLDER", propOrder = {
"subFolders",
"attestations",
"compositionRcIds"
})
public class FOLDER
extends RECORDCOMPONENT
{
@XmlElement(name = "sub_folders")
protected List subFolders;
protected List attestations;
@XmlElement(name = "composition_rc_ids")
protected List compositionRcIds;
/**
* Gets the value of the subFolders 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 subFolders property.
*
*
* For example, to add a new item, do as follows:
*
* getSubFolders().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FOLDER }
*
*
*/
public List getSubFolders() {
if (subFolders == null) {
subFolders = new ArrayList();
}
return this.subFolders;
}
/**
* Gets the value of the attestations 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 attestations property.
*
*
* For example, to add a new item, do as follows:
*
* getAttestations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ATTESTATIONINFO }
*
*
*/
public List getAttestations() {
if (attestations == null) {
attestations = new ArrayList();
}
return this.attestations;
}
/**
* Gets the value of the compositionRcIds 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 compositionRcIds property.
*
*
* For example, to add a new item, do as follows:
*
* getCompositionRcIds().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ST }
*
*
*/
public List getCompositionRcIds() {
if (compositionRcIds == null) {
compositionRcIds = new ArrayList();
}
return this.compositionRcIds;
}
}