Enum AuditUserOperationType



  • public enum AuditUserOperationType
    extends java.lang.Enum<AuditUserOperationType>
    Type of user operation logged for auditing purposes.
    • Enum Constant Detail

      • changePassword

        public static final AuditUserOperationType changePassword
        Change of user password in D2000 HI.
      • changeUserSettings

        public static final AuditUserOperationType changeUserSettings
        Change of user settings in D2000 HI.
      • configureNewUser

        public static final AuditUserOperationType configureNewUser
        Creation of a new user in D2000 CNF.
      • configureSaveUser

        public static final AuditUserOperationType configureSaveUser
        Change of user configuration in D2000 CNF.
      • configureSaveUserPassword

        public static final AuditUserOperationType configureSaveUserPassword
        Change of user configuration and password in D2000 CNF.
      • xmlImportNewUser

        public static final AuditUserOperationType xmlImportNewUser
        Creation of a new user by XML Import.
      • xmlImportSaveUser

        public static final AuditUserOperationType xmlImportSaveUser
        Change of user configuration by XML Import.
      • xmlImportSaveUserPassword

        public static final AuditUserOperationType xmlImportSaveUserPassword
        Change of user configuration and password by XML Import.
      • entryConfiguration

        public static final AuditUserOperationType entryConfiguration
        Artificial first entry as a starting point of the history.
    • Method Detail

      • values

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

        public static AuditUserOperationType 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 name
        java.lang.NullPointerException - if the argument is null
      • fromLegacyName

        public static AuditUserOperationType fromLegacyName​(java.lang.String legacyName,
                                                            boolean ignoreCase)
        Translate legacy name of operation type to enumeration item. If name is not recognized, then null is returned.
        Parameters:
        legacyName - legacy name of operation type.
        ignoreCase - if true then String.equalsIgnoreCase(String) is used for comparison of legacy name instead of String.equals(Object).
        Returns:
        enumeration item if recoginzed by its legacy name or null otherwise.
      • getLegacyName

        public java.lang.String getLegacyName​()
        Get legacy name of the operation type.
        Returns:
        legacy name