blob: a686919b22bf0540b1bc83fed994b4c14ef00baf [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Conformance Operation</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A conformance statement is a set of capabilities of a FHIR Server that may be used as a statement of actual server functionality or a statement of required or desired server implementation.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ConformanceOperation#getName <em>Name</em>}</li>
* <li>{@link org.hl7.fhir.ConformanceOperation#getDefinition <em>Definition</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getConformanceOperation()
* @model extendedMetaData="name='Conformance.Operation' kind='elementOnly'"
* @generated
*/
public interface ConformanceOperation extends BackboneElement {
/**
* Returns the value of the '<em><b>Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The name of a query, which is used in the _query parameter when the query is called.
* <!-- end-model-doc -->
* @return the value of the '<em>Name</em>' containment reference.
* @see #setName(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getConformanceOperation_Name()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='name' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getName();
/**
* Sets the value of the '{@link org.hl7.fhir.ConformanceOperation#getName <em>Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' containment reference.
* @see #getName()
* @generated
*/
void setName(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Definition</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Where the formal definition can be found.
* <!-- end-model-doc -->
* @return the value of the '<em>Definition</em>' containment reference.
* @see #setDefinition(Reference)
* @see org.hl7.fhir.FhirPackage#getConformanceOperation_Definition()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='definition' namespace='##targetNamespace'"
* @generated
*/
Reference getDefinition();
/**
* Sets the value of the '{@link org.hl7.fhir.ConformanceOperation#getDefinition <em>Definition</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Definition</em>' containment reference.
* @see #getDefinition()
* @generated
*/
void setDefinition(Reference value);
} // ConformanceOperation