riv.ehr.patientsummary._1.LINK 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;
/**
*
* Creates a relationship between two Record Components that
* is orthogonal to the common one of containment. Note that
* if a recipient is not permitted to see the component linked
* to, even revealing the link constitutes an inappropriate
* disclosure. Role is of type CD so that the displayName
* property of that class can be used in place of any specific
* coding scheme.
*
*
* Java class for LINK complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LINK">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="follow_link" type="{urn:riv:ehr:patientsummary:1}BL"/>
* <element name="nature" type="{urn:riv:ehr:patientsummary:1}CS"/>
* <element name="role" type="{urn:riv:ehr:patientsummary:1}CD" minOccurs="0"/>
* <element name="target_type" type="{urn:riv:ehr:patientsummary:1}CD" minOccurs="0"/>
* <element name="target_id" type="{urn:riv:ehr:patientsummary:1}II" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LINK", propOrder = {
"followLink",
"nature",
"role",
"targetType",
"targetId"
})
public class LINK {
@XmlElement(name = "follow_link", required = true)
protected BL followLink;
@XmlElement(required = true)
protected CS nature;
protected CD role;
@XmlElement(name = "target_type")
protected CD targetType;
@XmlElement(name = "target_id", required = true)
protected List targetId;
/**
* Gets the value of the followLink property.
*
* @return
* possible object is
* {@link BL }
*
*/
public BL getFollowLink() {
return followLink;
}
/**
* Sets the value of the followLink property.
*
* @param value
* allowed object is
* {@link BL }
*
*/
public void setFollowLink(BL value) {
this.followLink = value;
}
/**
* Gets the value of the nature property.
*
* @return
* possible object is
* {@link CS }
*
*/
public CS getNature() {
return nature;
}
/**
* Sets the value of the nature property.
*
* @param value
* allowed object is
* {@link CS }
*
*/
public void setNature(CS value) {
this.nature = value;
}
/**
* Gets the value of the role property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getRole() {
return role;
}
/**
* Sets the value of the role property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setRole(CD value) {
this.role = value;
}
/**
* Gets the value of the targetType property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getTargetType() {
return targetType;
}
/**
* Sets the value of the targetType property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setTargetType(CD value) {
this.targetType = value;
}
/**
* Gets the value of the targetId 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 targetId property.
*
*
* For example, to add a new item, do as follows:
*
* getTargetId().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link II }
*
*
*/
public List getTargetId() {
if (targetId == null) {
targetId = new ArrayList();
}
return this.targetId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy