riv.ehr.patientsummary._1.HXIT Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HXIT complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HXIT">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="validTimeLow" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="validTimeHigh" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="controlActRoot" type="{urn:riv:ehr:patientsummary:1}Uid" />
* <attribute name="controlActExtension" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HXIT")
@XmlSeeAlso({
ANY.class
})
public abstract class HXIT {
@XmlAttribute(name = "validTimeLow")
protected String validTimeLow;
@XmlAttribute(name = "validTimeHigh")
protected String validTimeHigh;
@XmlAttribute(name = "controlActRoot")
protected String controlActRoot;
@XmlAttribute(name = "controlActExtension")
protected String controlActExtension;
/**
* Gets the value of the validTimeLow property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValidTimeLow() {
return validTimeLow;
}
/**
* Sets the value of the validTimeLow property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValidTimeLow(String value) {
this.validTimeLow = value;
}
/**
* Gets the value of the validTimeHigh property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValidTimeHigh() {
return validTimeHigh;
}
/**
* Sets the value of the validTimeHigh property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValidTimeHigh(String value) {
this.validTimeHigh = value;
}
/**
* Gets the value of the controlActRoot property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getControlActRoot() {
return controlActRoot;
}
/**
* Sets the value of the controlActRoot property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setControlActRoot(String value) {
this.controlActRoot = value;
}
/**
* Gets the value of the controlActExtension property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getControlActExtension() {
return controlActExtension;
}
/**
* Sets the value of the controlActExtension property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setControlActExtension(String value) {
this.controlActExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy