blob: e87f760ff5cf0e24b8d4783ac73cb9676bd1ad81 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Capability Statement Document</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A Capability Statement documents a set of capabilities (behaviors) of a FHIR Server for a particular version of FHIR 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.CapabilityStatementDocument#getMode <em>Mode</em>}</li>
* <li>{@link org.hl7.fhir.CapabilityStatementDocument#getDocumentation <em>Documentation</em>}</li>
* <li>{@link org.hl7.fhir.CapabilityStatementDocument#getProfile <em>Profile</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getCapabilityStatementDocument()
* @model extendedMetaData="name='CapabilityStatement.Document' kind='elementOnly'"
* @generated
*/
public interface CapabilityStatementDocument extends BackboneElement {
/**
* Returns the value of the '<em><b>Mode</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Mode of this document declaration - whether an application is a producer or consumer.
* <!-- end-model-doc -->
* @return the value of the '<em>Mode</em>' containment reference.
* @see #setMode(DocumentMode)
* @see org.hl7.fhir.FhirPackage#getCapabilityStatementDocument_Mode()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='mode' namespace='##targetNamespace'"
* @generated
*/
DocumentMode getMode();
/**
* Sets the value of the '{@link org.hl7.fhir.CapabilityStatementDocument#getMode <em>Mode</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Mode</em>' containment reference.
* @see #getMode()
* @generated
*/
void setMode(DocumentMode value);
/**
* Returns the value of the '<em><b>Documentation</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A description of how the application supports or uses the specified document profile. For example, when documents are created, what action is taken with consumed documents, etc.
* <!-- end-model-doc -->
* @return the value of the '<em>Documentation</em>' containment reference.
* @see #setDocumentation(Markdown)
* @see org.hl7.fhir.FhirPackage#getCapabilityStatementDocument_Documentation()
* @model containment="true"
* extendedMetaData="kind='element' name='documentation' namespace='##targetNamespace'"
* @generated
*/
Markdown getDocumentation();
/**
* Sets the value of the '{@link org.hl7.fhir.CapabilityStatementDocument#getDocumentation <em>Documentation</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Documentation</em>' containment reference.
* @see #getDocumentation()
* @generated
*/
void setDocumentation(Markdown value);
/**
* Returns the value of the '<em><b>Profile</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A profile on the document Bundle that constrains which resources are present, and their contents.
* <!-- end-model-doc -->
* @return the value of the '<em>Profile</em>' containment reference.
* @see #setProfile(Canonical)
* @see org.hl7.fhir.FhirPackage#getCapabilityStatementDocument_Profile()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='profile' namespace='##targetNamespace'"
* @generated
*/
Canonical getProfile();
/**
* Sets the value of the '{@link org.hl7.fhir.CapabilityStatementDocument#getProfile <em>Profile</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Profile</em>' containment reference.
* @see #getProfile()
* @generated
*/
void setProfile(Canonical value);
} // CapabilityStatementDocument