blob: 757876aa0f294b9001923712b1bbed46f5941a76 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Conformance Messaging</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.ConformanceMessaging#getEndpoint <em>Endpoint</em>}</li>
* <li>{@link org.hl7.fhir.ConformanceMessaging#getReliableCache <em>Reliable Cache</em>}</li>
* <li>{@link org.hl7.fhir.ConformanceMessaging#getDocumentation <em>Documentation</em>}</li>
* <li>{@link org.hl7.fhir.ConformanceMessaging#getEvent <em>Event</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getConformanceMessaging()
* @model extendedMetaData="name='Conformance.Messaging' kind='elementOnly'"
* @generated
*/
public interface ConformanceMessaging extends BackboneElement {
/**
* Returns the value of the '<em><b>Endpoint</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.ConformanceEndpoint}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* An endpoint (network accessible address) to which messages and/or replies are to be sent.
* <!-- end-model-doc -->
* @return the value of the '<em>Endpoint</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getConformanceMessaging_Endpoint()
* @model containment="true"
* extendedMetaData="kind='element' name='endpoint' namespace='##targetNamespace'"
* @generated
*/
EList<ConformanceEndpoint> getEndpoint();
/**
* Returns the value of the '<em><b>Reliable Cache</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Length if the receiver's reliable messaging cache in minutes (if a receiver) or how long the cache length on the receiver should be (if a sender).
* <!-- end-model-doc -->
* @return the value of the '<em>Reliable Cache</em>' containment reference.
* @see #setReliableCache(UnsignedInt)
* @see org.hl7.fhir.FhirPackage#getConformanceMessaging_ReliableCache()
* @model containment="true"
* extendedMetaData="kind='element' name='reliableCache' namespace='##targetNamespace'"
* @generated
*/
UnsignedInt getReliableCache();
/**
* Sets the value of the '{@link org.hl7.fhir.ConformanceMessaging#getReliableCache <em>Reliable Cache</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Reliable Cache</em>' containment reference.
* @see #getReliableCache()
* @generated
*/
void setReliableCache(UnsignedInt value);
/**
* Returns the value of the '<em><b>Documentation</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Documentation about the system's messaging capabilities for this endpoint not otherwise documented by the conformance statement. For example, process for becoming an authorized messaging exchange partner.
* <!-- end-model-doc -->
* @return the value of the '<em>Documentation</em>' containment reference.
* @see #setDocumentation(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getConformanceMessaging_Documentation()
* @model containment="true"
* extendedMetaData="kind='element' name='documentation' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getDocumentation();
/**
* Sets the value of the '{@link org.hl7.fhir.ConformanceMessaging#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(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Event</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.ConformanceEvent}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A description of the solution's support for an event at this end-point.
* <!-- end-model-doc -->
* @return the value of the '<em>Event</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getConformanceMessaging_Event()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='event' namespace='##targetNamespace'"
* @generated
*/
EList<ConformanceEvent> getEvent();
} // ConformanceMessaging