blob: 37631ac4bda817d9e36b5dd1c3e94e93f3c374dc [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Audit Event Source</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A record of an event made for purposes of maintaining a security log. Typical uses include detection of intrusion attempts and monitoring for inappropriate usage.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.AuditEventSource#getSite <em>Site</em>}</li>
* <li>{@link org.hl7.fhir.AuditEventSource#getIdentifier <em>Identifier</em>}</li>
* <li>{@link org.hl7.fhir.AuditEventSource#getType <em>Type</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getAuditEventSource()
* @model extendedMetaData="name='AuditEvent.Source' kind='elementOnly'"
* @generated
*/
public interface AuditEventSource extends BackboneElement {
/**
* Returns the value of the '<em><b>Site</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Logical source location within the healthcare enterprise network. For example, a hospital or other provider location within a multi-entity provider group.
* <!-- end-model-doc -->
* @return the value of the '<em>Site</em>' containment reference.
* @see #setSite(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getAuditEventSource_Site()
* @model containment="true"
* extendedMetaData="kind='element' name='site' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getSite();
/**
* Sets the value of the '{@link org.hl7.fhir.AuditEventSource#getSite <em>Site</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Site</em>' containment reference.
* @see #getSite()
* @generated
*/
void setSite(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Identifier</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Identifier of the source where the event was detected.
* <!-- end-model-doc -->
* @return the value of the '<em>Identifier</em>' containment reference.
* @see #setIdentifier(Identifier)
* @see org.hl7.fhir.FhirPackage#getAuditEventSource_Identifier()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='identifier' namespace='##targetNamespace'"
* @generated
*/
Identifier getIdentifier();
/**
* Sets the value of the '{@link org.hl7.fhir.AuditEventSource#getIdentifier <em>Identifier</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Identifier</em>' containment reference.
* @see #getIdentifier()
* @generated
*/
void setIdentifier(Identifier value);
/**
* Returns the value of the '<em><b>Type</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.Coding}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Code specifying the type of source where event originated.
* <!-- end-model-doc -->
* @return the value of the '<em>Type</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getAuditEventSource_Type()
* @model containment="true"
* extendedMetaData="kind='element' name='type' namespace='##targetNamespace'"
* @generated
*/
EList<Coding> getType();
} // AuditEventSource