blob: ec672253ffbd417c5a6d8ee5f6adb9216f0678e2 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Audit Event Detail</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.AuditEventDetail#getType <em>Type</em>}</li>
* <li>{@link org.hl7.fhir.AuditEventDetail#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getAuditEventDetail()
* @model extendedMetaData="name='AuditEvent.Detail' kind='elementOnly'"
* @generated
*/
public interface AuditEventDetail extends BackboneElement {
/**
* Returns the value of the '<em><b>Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Name of the property.
* <!-- end-model-doc -->
* @return the value of the '<em>Type</em>' containment reference.
* @see #setType(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getAuditEventDetail_Type()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='type' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getType();
/**
* Sets the value of the '{@link org.hl7.fhir.AuditEventDetail#getType <em>Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' containment reference.
* @see #getType()
* @generated
*/
void setType(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Property value.
* <!-- end-model-doc -->
* @return the value of the '<em>Value</em>' containment reference.
* @see #setValue(Base64Binary)
* @see org.hl7.fhir.FhirPackage#getAuditEventDetail_Value()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='value' namespace='##targetNamespace'"
* @generated
*/
Base64Binary getValue();
/**
* Sets the value of the '{@link org.hl7.fhir.AuditEventDetail#getValue <em>Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' containment reference.
* @see #getValue()
* @generated
*/
void setValue(Base64Binary value);
} // AuditEventDetail