Enum AuditEvents

    • Enum Constant Detail

      • CREATE_PERSON

        public static final AuditEvents CREATE_PERSON
      • DELETE_PERSON

        public static final AuditEvents DELETE_PERSON
      • CREATE_USER_GROUP

        public static final AuditEvents CREATE_USER_GROUP
      • DELETE_USER_GROUP

        public static final AuditEvents DELETE_USER_GROUP
      • ADD_TO_USER_GROUP

        public static final AuditEvents ADD_TO_USER_GROUP
      • REMOVE_FROM_USER_GROUP

        public static final AuditEvents REMOVE_FROM_USER_GROUP
      • LOGIN_UNSUCCESSFUL

        public static final AuditEvents LOGIN_UNSUCCESSFUL
      • LOGIN_SUCCESSFUL

        public static final AuditEvents LOGIN_SUCCESSFUL
      • CREATE_HOLD

        public static final AuditEvents CREATE_HOLD
      • DELETE_HOLD

        public static final AuditEvents DELETE_HOLD
      • ADD_TO_HOLD

        public static final AuditEvents ADD_TO_HOLD
      • REMOVE_FROM_HOLD

        public static final AuditEvents REMOVE_FROM_HOLD
    • Field Detail

      • event

        public final String event
        event audited
      • eventDisplayName

        public final String eventDisplayName
        display name for the event audited
    • Method Detail

      • values

        public static AuditEvents[] 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 (AuditEvents c : AuditEvents.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AuditEvents valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null