blob: b8a39b8e3d775834eeb528d98944863d10170d34 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Test Script Action1</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.TestScriptAction1#getOperation <em>Operation</em>}</li>
* <li>{@link org.hl7.fhir.TestScriptAction1#getAssert <em>Assert</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getTestScriptAction1()
* @model extendedMetaData="name='TestScript.Action1' kind='elementOnly'"
* @generated
*/
public interface TestScriptAction1 extends BackboneElement {
/**
* Returns the value of the '<em><b>Operation</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* An operation would involve a REST request to a server.
* <!-- end-model-doc -->
* @return the value of the '<em>Operation</em>' containment reference.
* @see #setOperation(TestScriptOperation)
* @see org.hl7.fhir.FhirPackage#getTestScriptAction1_Operation()
* @model containment="true"
* extendedMetaData="kind='element' name='operation' namespace='##targetNamespace'"
* @generated
*/
TestScriptOperation getOperation();
/**
* Sets the value of the '{@link org.hl7.fhir.TestScriptAction1#getOperation <em>Operation</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Operation</em>' containment reference.
* @see #getOperation()
* @generated
*/
void setOperation(TestScriptOperation value);
/**
* Returns the value of the '<em><b>Assert</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Evaluates the results of previous operations to determine if the server under test behaves appropriately.
* <!-- end-model-doc -->
* @return the value of the '<em>Assert</em>' containment reference.
* @see #setAssert(TestScriptAssert)
* @see org.hl7.fhir.FhirPackage#getTestScriptAction1_Assert()
* @model containment="true"
* extendedMetaData="kind='element' name='assert' namespace='##targetNamespace'"
* @generated
*/
TestScriptAssert getAssert();
/**
* Sets the value of the '{@link org.hl7.fhir.TestScriptAction1#getAssert <em>Assert</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Assert</em>' containment reference.
* @see #getAssert()
* @generated
*/
void setAssert(TestScriptAssert value);
} // TestScriptAction1