Enum FocusBehaviorUpdateType

  • All Implemented Interfaces:
    Serializable, Comparable<FocusBehaviorUpdateType>

    public enum FocusBehaviorUpdateType
    extends Enum<FocusBehaviorUpdateType>
    Option for updating focus authentication behaviour attributes. We can enable/disable updating of focus behavior during every login, or we can use option for updating behaviour only when login failed and during success login after fails login.
    • Enum Constant Detail

      • DISABLED

        public static final FocusBehaviorUpdateType DISABLED
        Authentication behaviour attributes will not be updated during login.
      • FAILURE_ONLY

        public static final FocusBehaviorUpdateType FAILURE_ONLY
        Authentication behaviour attributes will be updated when login failed and when login will be success, but previous login was failed and midPoint need update attributes as is number of login fails and lockout state.
    • Method Detail

      • values

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

        public static FocusBehaviorUpdateType 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
      • value

        public String value()