blob: 08801e6d51310e5f9b0ca7a1e2248b66a7ab9b13 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Verification Result Validator</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Describes validation requirements, source(s), status and dates for one or more elements.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.VerificationResultValidator#getOrganization <em>Organization</em>}</li>
* <li>{@link org.hl7.fhir.VerificationResultValidator#getIdentityCertificate <em>Identity Certificate</em>}</li>
* <li>{@link org.hl7.fhir.VerificationResultValidator#getAttestationSignature <em>Attestation Signature</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getVerificationResultValidator()
* @model extendedMetaData="name='VerificationResult.Validator' kind='elementOnly'"
* @generated
*/
public interface VerificationResultValidator extends BackboneElement {
/**
* Returns the value of the '<em><b>Organization</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Reference to the organization validating information.
* <!-- end-model-doc -->
* @return the value of the '<em>Organization</em>' containment reference.
* @see #setOrganization(Reference)
* @see org.hl7.fhir.FhirPackage#getVerificationResultValidator_Organization()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='organization' namespace='##targetNamespace'"
* @generated
*/
Reference getOrganization();
/**
* Sets the value of the '{@link org.hl7.fhir.VerificationResultValidator#getOrganization <em>Organization</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Organization</em>' containment reference.
* @see #getOrganization()
* @generated
*/
void setOrganization(Reference value);
/**
* Returns the value of the '<em><b>Identity Certificate</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A digital identity certificate associated with the validator.
* <!-- end-model-doc -->
* @return the value of the '<em>Identity Certificate</em>' containment reference.
* @see #setIdentityCertificate(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getVerificationResultValidator_IdentityCertificate()
* @model containment="true"
* extendedMetaData="kind='element' name='identityCertificate' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getIdentityCertificate();
/**
* Sets the value of the '{@link org.hl7.fhir.VerificationResultValidator#getIdentityCertificate <em>Identity Certificate</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Identity Certificate</em>' containment reference.
* @see #getIdentityCertificate()
* @generated
*/
void setIdentityCertificate(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Attestation Signature</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Signed assertion by the validator that they have validated the information.
* <!-- end-model-doc -->
* @return the value of the '<em>Attestation Signature</em>' containment reference.
* @see #setAttestationSignature(Signature)
* @see org.hl7.fhir.FhirPackage#getVerificationResultValidator_AttestationSignature()
* @model containment="true"
* extendedMetaData="kind='element' name='attestationSignature' namespace='##targetNamespace'"
* @generated
*/
Signature getAttestationSignature();
/**
* Sets the value of the '{@link org.hl7.fhir.VerificationResultValidator#getAttestationSignature <em>Attestation Signature</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Attestation Signature</em>' containment reference.
* @see #getAttestationSignature()
* @generated
*/
void setAttestationSignature(Signature value);
} // VerificationResultValidator