blob: b29e164bdd055f9d3fb45ba1a339a80871425686 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Test Script Metadata</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* TestScript is a resource that specifies a suite of tests against a FHIR server implementation to determine compliance against the FHIR specification.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.TestScriptMetadata#getLink <em>Link</em>}</li>
* <li>{@link org.hl7.fhir.TestScriptMetadata#getCapability <em>Capability</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getTestScriptMetadata()
* @model extendedMetaData="name='TestScript.Metadata' kind='elementOnly'"
* @generated
*/
public interface TestScriptMetadata extends BackboneElement {
/**
* Returns the value of the '<em><b>Link</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.TestScriptLink}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A link to the FHIR specification that this test is covering.
* <!-- end-model-doc -->
* @return the value of the '<em>Link</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getTestScriptMetadata_Link()
* @model containment="true"
* extendedMetaData="kind='element' name='link' namespace='##targetNamespace'"
* @generated
*/
EList<TestScriptLink> getLink();
/**
* Returns the value of the '<em><b>Capability</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.TestScriptCapability}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Capabilities that must exist and are assumed to function correctly on the FHIR server being tested.
* <!-- end-model-doc -->
* @return the value of the '<em>Capability</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getTestScriptMetadata_Capability()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='capability' namespace='##targetNamespace'"
* @generated
*/
EList<TestScriptCapability> getCapability();
} // TestScriptMetadata