Enum Class FocusBehaviorUpdateType

java.lang.Object
java.lang.Enum<FocusBehaviorUpdateType>
com.evolveum.midpoint.xml.ns._public.common.common_3.FocusBehaviorUpdateType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<FocusBehaviorUpdateType>, Constable

public enum FocusBehaviorUpdateType extends Enum<FocusBehaviorUpdateType> implements TypeSafeEnum
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 Details

    • ENABLED

      public static final FocusBehaviorUpdateType ENABLED
      Behaviour attributes will be updated every login.
    • 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 Details

    • values

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

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static FocusBehaviorUpdateType fromValue(String v)