riv.ehr.patientsummary._1.EXTRACTCRITERIA 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;
/**
*
* Restrictions or filters on the creation of the EHR Extract.
* The time_period should be a restriction on the data types
* of low and high to make them TS, but this restriction is
* not permissible in XML Schema and thus the IVL properties
* are simply copied here with the appropriate types.
*
*
* Java class for EXTRACT_CRITERIA complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="EXTRACT_CRITERIA">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="all_versions" type="{urn:riv:ehr:patientsummary:1}BL" minOccurs="0"/>
* <element name="archetype_ids" type="{urn:riv:ehr:patientsummary:1}II" maxOccurs="unbounded" minOccurs="0"/>
* <element name="max_sensitivity" type="{urn:riv:ehr:patientsummary:1}INT" minOccurs="0"/>
* <element name="multimedia_included" type="{urn:riv:ehr:patientsummary:1}BL" minOccurs="0"/>
* <element name="other_constraints" type="{urn:riv:ehr:patientsummary:1}ST" minOccurs="0"/>
* <element name="time_period" type="{urn:riv:ehr:patientsummary:1}IVL_TS" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EXTRACT_CRITERIA", propOrder = {
"allVersions",
"archetypeIds",
"maxSensitivity",
"multimediaIncluded",
"otherConstraints",
"timePeriod"
})
public class EXTRACTCRITERIA {
@XmlElement(name = "all_versions")
protected BL allVersions;
@XmlElement(name = "archetype_ids")
protected List archetypeIds;
@XmlElement(name = "max_sensitivity")
protected INT maxSensitivity;
@XmlElement(name = "multimedia_included")
protected BL multimediaIncluded;
@XmlElement(name = "other_constraints")
protected ST otherConstraints;
@XmlElement(name = "time_period")
protected IVLTS timePeriod;
/**
* Gets the value of the allVersions property.
*
* @return
* possible object is
* {@link BL }
*
*/
public BL getAllVersions() {
return allVersions;
}
/**
* Sets the value of the allVersions property.
*
* @param value
* allowed object is
* {@link BL }
*
*/
public void setAllVersions(BL value) {
this.allVersions = value;
}
/**
* Gets the value of the archetypeIds 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 archetypeIds property.
*
*
* For example, to add a new item, do as follows:
*
* getArchetypeIds().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link II }
*
*
*/
public List getArchetypeIds() {
if (archetypeIds == null) {
archetypeIds = new ArrayList();
}
return this.archetypeIds;
}
/**
* Gets the value of the maxSensitivity property.
*
* @return
* possible object is
* {@link INT }
*
*/
public INT getMaxSensitivity() {
return maxSensitivity;
}
/**
* Sets the value of the maxSensitivity property.
*
* @param value
* allowed object is
* {@link INT }
*
*/
public void setMaxSensitivity(INT value) {
this.maxSensitivity = value;
}
/**
* Gets the value of the multimediaIncluded property.
*
* @return
* possible object is
* {@link BL }
*
*/
public BL getMultimediaIncluded() {
return multimediaIncluded;
}
/**
* Sets the value of the multimediaIncluded property.
*
* @param value
* allowed object is
* {@link BL }
*
*/
public void setMultimediaIncluded(BL value) {
this.multimediaIncluded = value;
}
/**
* Gets the value of the otherConstraints property.
*
* @return
* possible object is
* {@link ST }
*
*/
public ST getOtherConstraints() {
return otherConstraints;
}
/**
* Sets the value of the otherConstraints property.
*
* @param value
* allowed object is
* {@link ST }
*
*/
public void setOtherConstraints(ST value) {
this.otherConstraints = value;
}
/**
* Gets the value of the timePeriod property.
*
* @return
* possible object is
* {@link IVLTS }
*
*/
public IVLTS getTimePeriod() {
return timePeriod;
}
/**
* Sets the value of the timePeriod property.
*
* @param value
* allowed object is
* {@link IVLTS }
*
*/
public void setTimePeriod(IVLTS value) {
this.timePeriod = value;
}
}