riv.ehr.patientsummary._1.TEL 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.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for TEL complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TEL">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}ANY">
* <sequence>
* <element name="useablePeriod" type="{urn:riv:ehr:patientsummary:1}QSET_TS" minOccurs="0"/>
* </sequence>
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="use" type="{urn:riv:ehr:patientsummary:1}set_TelecommunicationAddressUse" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEL", propOrder = {
"useablePeriod"
})
@XmlSeeAlso({
TELURL.class,
TELPERSON.class
})
public class TEL
extends ANY
{
protected QSETTS useablePeriod;
@XmlAttribute(name = "value")
@XmlSchemaType(name = "anyURI")
protected String value;
@XmlAttribute(name = "use")
protected List use;
/**
* Gets the value of the useablePeriod property.
*
* @return
* possible object is
* {@link QSETTS }
*
*/
public QSETTS getUseablePeriod() {
return useablePeriod;
}
/**
* Sets the value of the useablePeriod property.
*
* @param value
* allowed object is
* {@link QSETTS }
*
*/
public void setUseablePeriod(QSETTS value) {
this.useablePeriod = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the use 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 use property.
*
*
* For example, to add a new item, do as follows:
*
* getUse().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TelecommunicationAddressUse }
*
*
*/
public List getUse() {
if (use == null) {
use = new ArrayList();
}
return this.use;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy