blob: 0f7dc30024aa1ec0304f17d28bf3288aa0f483f4 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Test Script Action2</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.TestScriptAction2#getOperation <em>Operation</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getTestScriptAction2()
* @model extendedMetaData="name='TestScript.Action2' kind='elementOnly'"
* @generated
*/
public interface TestScriptAction2 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#getTestScriptAction2_Operation()
* @model containment="true"
* extendedMetaData="kind='element' name='operation' namespace='##targetNamespace'"
* @generated
*/
TestScriptOperation getOperation();
/**
* Sets the value of the '{@link org.hl7.fhir.TestScriptAction2#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);
} // TestScriptAction2