riv.ehr.patientsummary._1.FUNCTIONALROLE 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* The participation of an entity in the EHR.
*
*
* Java class for FUNCTIONAL_ROLE complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FUNCTIONAL_ROLE">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="function" type="{urn:riv:ehr:patientsummary:1}CD" minOccurs="0"/>
* <element name="healthcare_facility" type="{urn:riv:ehr:patientsummary:1}II" minOccurs="0"/>
* <element name="mode" type="{urn:riv:ehr:patientsummary:1}CS" minOccurs="0"/>
* <element name="performer" type="{urn:riv:ehr:patientsummary:1}II"/>
* <element name="service_setting" type="{urn:riv:ehr:patientsummary:1}CD" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FUNCTIONAL_ROLE", propOrder = {
"function",
"healthcareFacility",
"mode",
"performer",
"serviceSetting"
})
public class FUNCTIONALROLE {
protected CD function;
@XmlElement(name = "healthcare_facility")
protected II healthcareFacility;
protected CS mode;
@XmlElement(required = true)
protected II performer;
@XmlElement(name = "service_setting")
protected CD serviceSetting;
/**
* Gets the value of the function property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getFunction() {
return function;
}
/**
* Sets the value of the function property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setFunction(CD value) {
this.function = value;
}
/**
* Gets the value of the healthcareFacility property.
*
* @return
* possible object is
* {@link II }
*
*/
public II getHealthcareFacility() {
return healthcareFacility;
}
/**
* Sets the value of the healthcareFacility property.
*
* @param value
* allowed object is
* {@link II }
*
*/
public void setHealthcareFacility(II value) {
this.healthcareFacility = value;
}
/**
* Gets the value of the mode property.
*
* @return
* possible object is
* {@link CS }
*
*/
public CS getMode() {
return mode;
}
/**
* Sets the value of the mode property.
*
* @param value
* allowed object is
* {@link CS }
*
*/
public void setMode(CS value) {
this.mode = value;
}
/**
* Gets the value of the performer property.
*
* @return
* possible object is
* {@link II }
*
*/
public II getPerformer() {
return performer;
}
/**
* Sets the value of the performer property.
*
* @param value
* allowed object is
* {@link II }
*
*/
public void setPerformer(II value) {
this.performer = value;
}
/**
* Gets the value of the serviceSetting property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getServiceSetting() {
return serviceSetting;
}
/**
* Sets the value of the serviceSetting property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setServiceSetting(CD value) {
this.serviceSetting = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy