riv.ehr.patientsummary._1.RELATEDPARTY 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;
/**
*
* Identifies the relationship of a person to the subject of
* care. Specifically used in Entry.subject_of_information.
*
*
* Java class for RELATED_PARTY complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RELATED_PARTY">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="party" type="{urn:riv:ehr:patientsummary:1}II" minOccurs="0"/>
* <element name="relationship" type="{urn:riv:ehr:patientsummary:1}ED"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RELATED_PARTY", propOrder = {
"party",
"relationship"
})
public class RELATEDPARTY {
protected II party;
@XmlElement(required = true)
protected ED relationship;
/**
* Gets the value of the party property.
*
* @return
* possible object is
* {@link II }
*
*/
public II getParty() {
return party;
}
/**
* Sets the value of the party property.
*
* @param value
* allowed object is
* {@link II }
*
*/
public void setParty(II value) {
this.party = value;
}
/**
* Gets the value of the relationship property.
*
* @return
* possible object is
* {@link ED }
*
*/
public ED getRelationship() {
return relationship;
}
/**
* Sets the value of the relationship property.
*
* @param value
* allowed object is
* {@link ED }
*
*/
public void setRelationship(ED value) {
this.relationship = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy