blob: 120a852fb88d5ee4d5f5aad68b58b6140c1aad7e [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.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.Code;
import org.eclipse.mdht.uml.fhir.core.datatype.Id;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Message Header Response</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.MessageHeaderResponse#getIdentifier <em>Identifier</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.MessageHeaderResponse#getCode <em>Code</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.MessageHeaderResponse#getDetails <em>Details</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getMessageHeaderResponse()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='MessageHeader_Response'"
* @generated
*/
public interface MessageHeaderResponse extends BackboneElement {
/**
* Returns the value of the '<em><b>Identifier</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Identifier</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Identifier</em>' reference.
* @see #setIdentifier(Id)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getMessageHeaderResponse_Identifier()
* @model required="true"
* @generated
*/
Id getIdentifier();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.MessageHeaderResponse#getIdentifier <em>Identifier</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Identifier</em>' reference.
* @see #getIdentifier()
* @generated
*/
void setIdentifier(Id value);
/**
* Returns the value of the '<em><b>Code</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Code</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Code</em>' reference.
* @see #setCode(Code)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getMessageHeaderResponse_Code()
* @model required="true"
* @generated
*/
Code getCode();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.MessageHeaderResponse#getCode <em>Code</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Code</em>' reference.
* @see #getCode()
* @generated
*/
void setCode(Code value);
/**
* Returns the value of the '<em><b>Details</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Details</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Details</em>' reference.
* @see #setDetails(OperationOutcome)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getMessageHeaderResponse_Details()
* @model
* @generated
*/
OperationOutcome getDetails();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.MessageHeaderResponse#getDetails <em>Details</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Details</em>' reference.
* @see #getDetails()
* @generated
*/
void setDetails(OperationOutcome value);
} // MessageHeaderResponse