Enum FocusBehaviorUpdateType
- java.lang.Object
-
- java.lang.Enum<FocusBehaviorUpdateType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.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 Summary
Enum Constants Enum Constant Description DISABLED
Authentication behaviour attributes will not be updated during login.ENABLED
Behaviour attributes will be updated every login.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 Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FocusBehaviorUpdateType
fromValue(String v)
String
value()
static FocusBehaviorUpdateType
valueOf(String name)
Returns the enum constant of this type with the specified name.static FocusBehaviorUpdateType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 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 nameNullPointerException
- if the argument is null
-
value
public String value()
-
fromValue
public static FocusBehaviorUpdateType fromValue(String v)
-
-