blob: 211751034e66c73bc67800134a5ab24452ffdf4e [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Audit Event</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEvent#getEvent <em>Event</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEvent#getParticipants <em>Participant</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEvent#getSource <em>Source</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEvent#getObjects <em>Object</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAuditEvent()
* @model
* @generated
*/
public interface AuditEvent extends DomainResource {
/**
* Returns the value of the '<em><b>Event</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Event</em>' containment reference 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.
* @see #setEvent(AuditEventEvent)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAuditEvent_Event()
* @model containment="true" required="true"
* @generated
*/
AuditEventEvent getEvent();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEvent#getEvent <em>Event</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Event</em>' containment reference.
* @see #getEvent()
* @generated
*/
void setEvent(AuditEventEvent value);
/**
* Returns the value of the '<em><b>Participant</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.AuditEventParticipant}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Participant</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>Participant</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAuditEvent_Participant()
* @model containment="true" required="true"
* @generated
*/
EList<AuditEventParticipant> getParticipants();
/**
* Returns the value of the '<em><b>Source</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Source</em>' containment reference.
* @see #setSource(AuditEventSource)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAuditEvent_Source()
* @model containment="true" required="true"
* @generated
*/
AuditEventSource getSource();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.AuditEvent#getSource <em>Source</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source</em>' containment reference.
* @see #getSource()
* @generated
*/
void setSource(AuditEventSource value);
/**
* Returns the value of the '<em><b>Object</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.AuditEventObject}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Object</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>Object</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAuditEvent_Object()
* @model containment="true"
* @generated
*/
EList<AuditEventObject> getObjects();
} // AuditEvent