blob: fd545c02c652b67836b85cb89c3e8269f125d14f [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Test Script Request Header</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.TestScriptRequestHeader#getField <em>Field</em>}</li>
* <li>{@link org.hl7.fhir.TestScriptRequestHeader#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getTestScriptRequestHeader()
* @model extendedMetaData="name='TestScript.RequestHeader' kind='elementOnly'"
* @generated
*/
public interface TestScriptRequestHeader extends BackboneElement {
/**
* Returns the value of the '<em><b>Field</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The HTTP header field e.g. "Accept".
* <!-- end-model-doc -->
* @return the value of the '<em>Field</em>' containment reference.
* @see #setField(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getTestScriptRequestHeader_Field()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='field' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getField();
/**
* Sets the value of the '{@link org.hl7.fhir.TestScriptRequestHeader#getField <em>Field</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Field</em>' containment reference.
* @see #getField()
* @generated
*/
void setField(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The value of the header e.g. "application/xml".
* <!-- end-model-doc -->
* @return the value of the '<em>Value</em>' containment reference.
* @see #setValue(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getTestScriptRequestHeader_Value()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='value' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getValue();
/**
* Sets the value of the '{@link org.hl7.fhir.TestScriptRequestHeader#getValue <em>Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' containment reference.
* @see #getValue()
* @generated
*/
void setValue(org.hl7.fhir.String value);
} // TestScriptRequestHeader