Enum Class AuditEntry.Mode

java.lang.Object
java.lang.Enum<AuditEntry.Mode>
com.sas.lsaf.security.audit.AuditEntry.Mode
All Implemented Interfaces:
Serializable, Comparable<AuditEntry.Mode>, Constable
Enclosing class:
AuditEntry

public static enum AuditEntry.Mode extends Enum<AuditEntry.Mode>
The execution mode in which the audit entry was recorded.
Since:
2.1
  • Enum Constant Details

    • USER

      public static final AuditEntry.Mode USER
      The entry was recorded during a typical user session mode. No elevated privileges or access rights were in place when the entry was recorded. This is the typical mode in which most records are recorded.
    • SYSTEM

      public static final AuditEntry.Mode SYSTEM
      The entry was recorded by a system action. System actions are actions that the system executes on behave of a user or the system.
    • ADMIN

      public static final AuditEntry.Mode ADMIN
      The entry was recorded while the end user was in administrative mode. This is a privileged mode that enables the end user to make changes that they might not necessarily have the access rights to make in user mode.
  • Method Details

    • values

      public static AuditEntry.Mode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AuditEntry.Mode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null