blob: 8a36afcce909874c126f5f755820472fb4c00e4a [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Capability Statement Implementation</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.CapabilityStatementImplementation#getDescription <em>Description</em>}</li>
* <li>{@link org.hl7.fhir.CapabilityStatementImplementation#getUrl <em>Url</em>}</li>
* <li>{@link org.hl7.fhir.CapabilityStatementImplementation#getCustodian <em>Custodian</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getCapabilityStatementImplementation()
* @model extendedMetaData="name='CapabilityStatement.Implementation' kind='elementOnly'"
* @generated
*/
public interface CapabilityStatementImplementation extends BackboneElement {
/**
* Returns the value of the '<em><b>Description</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Information about the specific installation that this capability statement relates to.
* <!-- end-model-doc -->
* @return the value of the '<em>Description</em>' containment reference.
* @see #setDescription(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getCapabilityStatementImplementation_Description()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='description' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getDescription();
/**
* Sets the value of the '{@link org.hl7.fhir.CapabilityStatementImplementation#getDescription <em>Description</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' containment reference.
* @see #getDescription()
* @generated
*/
void setDescription(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Url</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* An absolute base URL for the implementation. This forms the base for REST interfaces as well as the mailbox and document interfaces.
* <!-- end-model-doc -->
* @return the value of the '<em>Url</em>' containment reference.
* @see #setUrl(Url)
* @see org.hl7.fhir.FhirPackage#getCapabilityStatementImplementation_Url()
* @model containment="true"
* extendedMetaData="kind='element' name='url' namespace='##targetNamespace'"
* @generated
*/
Url getUrl();
/**
* Sets the value of the '{@link org.hl7.fhir.CapabilityStatementImplementation#getUrl <em>Url</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Url</em>' containment reference.
* @see #getUrl()
* @generated
*/
void setUrl(Url value);
/**
* Returns the value of the '<em><b>Custodian</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The organization responsible for the management of the instance and oversight of the data on the server at the specified URL.
* <!-- end-model-doc -->
* @return the value of the '<em>Custodian</em>' containment reference.
* @see #setCustodian(Reference)
* @see org.hl7.fhir.FhirPackage#getCapabilityStatementImplementation_Custodian()
* @model containment="true"
* extendedMetaData="kind='element' name='custodian' namespace='##targetNamespace'"
* @generated
*/
Reference getCustodian();
/**
* Sets the value of the '{@link org.hl7.fhir.CapabilityStatementImplementation#getCustodian <em>Custodian</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Custodian</em>' containment reference.
* @see #getCustodian()
* @generated
*/
void setCustodian(Reference value);
} // CapabilityStatementImplementation