Class ValidateActiveAccountConfig
- java.lang.Object
-
- org.forgerock.selfservice.stages.user.ValidateActiveAccountConfig
-
- All Implemented Interfaces:
StageConfig
public final class ValidateActiveAccountConfig extends Object implements StageConfig
Configuration for the validate active account stage.- Since:
- 22.0.0
-
-
Constructor Summary
Constructors Constructor Description ValidateActiveAccountConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAccountStatusField()
Gets the field name for the account status.String
getName()
Gets the name of the stage configuration.String
getProgressStageClassName()
Gets the class name of the consuming progress stage.String
getValidStatusValue()
Gets the field name for the valid status value.int
hashCode()
ValidateActiveAccountConfig
setAccountStatusField(String accountStatusField)
Sets the field name for the account status.ValidateActiveAccountConfig
setValidStatusValue(String validStatusValue)
Sets the field name for the valid status value.
-
-
-
Field Detail
-
NAME
public static final String NAME
Name of the stage configuration.- See Also:
- Constant Field Values
-
-
Method Detail
-
getAccountStatusField
public String getAccountStatusField()
Gets the field name for the account status.- Returns:
- the account status
-
setAccountStatusField
public ValidateActiveAccountConfig setAccountStatusField(String accountStatusField)
Sets the field name for the account status.- Parameters:
accountStatusField
- the account status- Returns:
- this config instance
-
getValidStatusValue
public String getValidStatusValue()
Gets the field name for the valid status value.- Returns:
- the valid status value
-
setValidStatusValue
public ValidateActiveAccountConfig setValidStatusValue(String validStatusValue)
Sets the field name for the valid status value.- Parameters:
validStatusValue
- the valid status value- Returns:
- this config instance
-
getName
public String getName()
Description copied from interface:StageConfig
Gets the name of the stage configuration.- Specified by:
getName
in interfaceStageConfig
- Returns:
- the config name
-
getProgressStageClassName
public String getProgressStageClassName()
Description copied from interface:StageConfig
Gets the class name of the consuming progress stage.- Specified by:
getProgressStageClassName
in interfaceStageConfig
- Returns:
- the progress stage class name
-
-