blob: 73c19de0d799c5ec5729874ce392bda8f768170c [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.Base64Binary;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Audit Event Object Detail</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEventObjectDetail#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEventObjectDetail#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAuditEventObjectDetail()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Object_Detail'"
* @generated
*/
public interface AuditEventObjectDetail extends BackboneElement {
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAuditEventObjectDetail_Type()
* @model required="true"
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getType();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEventObjectDetail#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Value</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' reference.
* @see #setValue(Base64Binary)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAuditEventObjectDetail_Value()
* @model required="true"
* @generated
*/
Base64Binary getValue();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEventObjectDetail#getValue <em>Value</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' reference.
* @see #getValue()
* @generated
*/
void setValue(Base64Binary value);
} // AuditEventObjectDetail