riv.ehr.patientsummary._1.HEALTHCAREPROFESSIONALROLE 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;
/**
*
* Describes the role of a healthcare professional in the
* record, based on the GPICS class of the same name. Note
* that the id instances should refer to the same identified
* individual, but might be needed to establish that
* individual's identity in different working environments.
*
*
* Java class for HEALTHCARE_PROFESSIONAL_ROLE complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HEALTHCARE_PROFESSIONAL_ROLE">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{urn:riv:ehr:patientsummary:1}II" maxOccurs="unbounded" minOccurs="0"/>
* <element name="position_or_grade" type="{urn:riv:ehr:patientsummary:1}CD" minOccurs="0"/>
* <element name="profession" type="{urn:riv:ehr:patientsummary:1}CD" minOccurs="0"/>
* <element name="specialty" type="{urn:riv:ehr:patientsummary:1}CD" minOccurs="0"/>
* <element name="scopingOrganisation_id" type="{urn:riv:ehr:patientsummary:1}II" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HEALTHCARE_PROFESSIONAL_ROLE", propOrder = {
"id",
"positionOrGrade",
"profession",
"specialty",
"scopingOrganisationId"
})
public class HEALTHCAREPROFESSIONALROLE {
protected List id;
@XmlElement(name = "position_or_grade")
protected CD positionOrGrade;
protected CD profession;
protected CD specialty;
@XmlElement(name = "scopingOrganisation_id")
protected II scopingOrganisationId;
/**
* Gets the value of the id 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 id property.
*
*
* For example, to add a new item, do as follows:
*
* getId().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link II }
*
*
*/
public List getId() {
if (id == null) {
id = new ArrayList();
}
return this.id;
}
/**
* Gets the value of the positionOrGrade property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getPositionOrGrade() {
return positionOrGrade;
}
/**
* Sets the value of the positionOrGrade property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setPositionOrGrade(CD value) {
this.positionOrGrade = value;
}
/**
* Gets the value of the profession property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getProfession() {
return profession;
}
/**
* Sets the value of the profession property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setProfession(CD value) {
this.profession = value;
}
/**
* Gets the value of the specialty property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getSpecialty() {
return specialty;
}
/**
* Sets the value of the specialty property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setSpecialty(CD value) {
this.specialty = value;
}
/**
* Gets the value of the scopingOrganisationId property.
*
* @return
* possible object is
* {@link II }
*
*/
public II getScopingOrganisationId() {
return scopingOrganisationId;
}
/**
* Sets the value of the scopingOrganisationId property.
*
* @param value
* allowed object is
* {@link II }
*
*/
public void setScopingOrganisationId(II value) {
this.scopingOrganisationId = value;
}
}