blob: 253933cd7e4c64e2e55d6daca0b862ca77bb8932 [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.Instant;
import org.eclipse.mdht.uml.fhir.core.datatype.Uri;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Bundle Entry Response</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.BundleEntryResponse#getStatus <em>Status</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.BundleEntryResponse#getLocation <em>Location</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.BundleEntryResponse#getEtag <em>Etag</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.BundleEntryResponse#getLastModified <em>Last Modified</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getBundleEntryResponse()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Entry_Response'"
* @generated
*/
public interface BundleEntryResponse extends BackboneElement {
/**
* Returns the value of the '<em><b>Status</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Status</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Status</em>' reference.
* @see #setStatus(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getBundleEntryResponse_Status()
* @model required="true"
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getStatus();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.BundleEntryResponse#getStatus <em>Status</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Status</em>' reference.
* @see #getStatus()
* @generated
*/
void setStatus(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Location</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Location</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Location</em>' reference.
* @see #setLocation(Uri)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getBundleEntryResponse_Location()
* @model
* @generated
*/
Uri getLocation();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.BundleEntryResponse#getLocation <em>Location</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Location</em>' reference.
* @see #getLocation()
* @generated
*/
void setLocation(Uri value);
/**
* Returns the value of the '<em><b>Etag</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Etag</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Etag</em>' reference.
* @see #setEtag(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getBundleEntryResponse_Etag()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getEtag();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.BundleEntryResponse#getEtag <em>Etag</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Etag</em>' reference.
* @see #getEtag()
* @generated
*/
void setEtag(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Last Modified</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Last Modified</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Last Modified</em>' reference.
* @see #setLastModified(Instant)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getBundleEntryResponse_LastModified()
* @model
* @generated
*/
Instant getLastModified();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.BundleEntryResponse#getLastModified <em>Last Modified</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Last Modified</em>' reference.
* @see #getLastModified()
* @generated
*/
void setLastModified(Instant value);
} // BundleEntryResponse