blob: 7b786c41566d281981a941b0e9bc9757c2bb2556 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Consent Actor</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A record of a healthcare consumer’s choices, which permits or denies identified recipient(s) or recipient role(s) to perform one or more actions within a given policy context, for specific purposes and periods of time.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ConsentActor#getRole <em>Role</em>}</li>
* <li>{@link org.hl7.fhir.ConsentActor#getReference <em>Reference</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getConsentActor()
* @model extendedMetaData="name='Consent.Actor' kind='elementOnly'"
* @generated
*/
public interface ConsentActor extends BackboneElement {
/**
* Returns the value of the '<em><b>Role</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* How the individual is involved in the resources content that is described in the exception.
* <!-- end-model-doc -->
* @return the value of the '<em>Role</em>' containment reference.
* @see #setRole(CodeableConcept)
* @see org.hl7.fhir.FhirPackage#getConsentActor_Role()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='role' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getRole();
/**
* Sets the value of the '{@link org.hl7.fhir.ConsentActor#getRole <em>Role</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Role</em>' containment reference.
* @see #getRole()
* @generated
*/
void setRole(CodeableConcept value);
/**
* Returns the value of the '<em><b>Reference</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The resource that identifies the actor. To identify actors by type, use group to identify a set of actors by some property they share (e.g. 'admitting officers').
* <!-- end-model-doc -->
* @return the value of the '<em>Reference</em>' containment reference.
* @see #setReference(Reference)
* @see org.hl7.fhir.FhirPackage#getConsentActor_Reference()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='reference' namespace='##targetNamespace'"
* @generated
*/
Reference getReference();
/**
* Sets the value of the '{@link org.hl7.fhir.ConsentActor#getReference <em>Reference</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Reference</em>' containment reference.
* @see #getReference()
* @generated
*/
void setReference(Reference value);
} // ConsentActor