blob: 68a9ad07959db723ea41d45e42b7ee608f88bb0b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 David Carlson and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* David Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.mdht.uml.fhir.core.resource;
import org.eclipse.emf.common.util.EList;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.UnsignedInt;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Conformance Messaging</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceMessaging#getEndpoints <em>Endpoint</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceMessaging#getReliableCache <em>Reliable Cache</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceMessaging#getDocumentation <em>Documentation</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceMessaging#getEvents <em>Event</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConformanceMessaging()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Conformance_Messaging'"
* @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.eclipse.mdht.uml.fhir.core.resource.ConformanceMessagingEndpoint}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Endpoint</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Endpoint</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConformanceMessaging_Endpoint()
* @model containment="true"
* @generated
*/
EList<ConformanceMessagingEndpoint> getEndpoints();
/**
* Returns the value of the '<em><b>Reliable Cache</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Reliable Cache</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Reliable Cache</em>' reference.
* @see #setReliableCache(UnsignedInt)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConformanceMessaging_ReliableCache()
* @model
* @generated
*/
UnsignedInt getReliableCache();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceMessaging#getReliableCache <em>Reliable Cache</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Reliable Cache</em>' reference.
* @see #getReliableCache()
* @generated
*/
void setReliableCache(UnsignedInt value);
/**
* Returns the value of the '<em><b>Documentation</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Documentation</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Documentation</em>' reference.
* @see #setDocumentation(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConformanceMessaging_Documentation()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getDocumentation();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceMessaging#getDocumentation <em>Documentation</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Documentation</em>' reference.
* @see #getDocumentation()
* @generated
*/
void setDocumentation(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Event</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceMessagingEvent}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Event</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Event</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConformanceMessaging_Event()
* @model containment="true" required="true"
* @generated
*/
EList<ConformanceMessagingEvent> getEvents();
} // ConformanceMessaging