Package com.ibm.fhir.audit
Enum AuditLogEventType
- java.lang.Object
-
- java.lang.Enum<AuditLogEventType>
-
- com.ibm.fhir.audit.AuditLogEventType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AuditLogEventType>
public enum AuditLogEventType extends java.lang.Enum<AuditLogEventType>
This enum defines allowable types of audit log events that can be logged using Audit Log Service.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FHIR_BUNDLEFHIR_CONFIGDATAFHIR_CREATEFHIR_DELETEFHIR_HISTORYFHIR_METADATAFHIR_OPERATIONFHIR_PATCHFHIR_READFHIR_SEARCHFHIR_UPDATEFHIR_VALIDATEFHIR_VREAD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuditLogEventTypefromValue(java.lang.String value)java.lang.Stringvalue()static AuditLogEventTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AuditLogEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FHIR_CREATE
public static final AuditLogEventType FHIR_CREATE
-
FHIR_UPDATE
public static final AuditLogEventType FHIR_UPDATE
-
FHIR_PATCH
public static final AuditLogEventType FHIR_PATCH
-
FHIR_DELETE
public static final AuditLogEventType FHIR_DELETE
-
FHIR_READ
public static final AuditLogEventType FHIR_READ
-
FHIR_VREAD
public static final AuditLogEventType FHIR_VREAD
-
FHIR_HISTORY
public static final AuditLogEventType FHIR_HISTORY
-
FHIR_SEARCH
public static final AuditLogEventType FHIR_SEARCH
-
FHIR_BUNDLE
public static final AuditLogEventType FHIR_BUNDLE
-
FHIR_VALIDATE
public static final AuditLogEventType FHIR_VALIDATE
-
FHIR_METADATA
public static final AuditLogEventType FHIR_METADATA
-
FHIR_CONFIGDATA
public static final AuditLogEventType FHIR_CONFIGDATA
-
FHIR_OPERATION
public static final AuditLogEventType FHIR_OPERATION
-
-
Method Detail
-
values
public static AuditLogEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AuditLogEventType c : AuditLogEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditLogEventType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
fromValue
public static AuditLogEventType fromValue(java.lang.String value)
-
-