Class ResetStageConfig
- java.lang.Object
-
- org.forgerock.selfservice.stages.reset.ResetStageConfig
-
- All Implemented Interfaces:
StageConfig
public final class ResetStageConfig extends Object implements StageConfig
Configuration for the password reset stage.- Since:
- 0.1.0
-
-
Constructor Summary
Constructors Constructor Description ResetStageConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getIdentityPasswordField()
Gets the password field identifier.String
getIdentityServiceUrl()
Gets the URL for the identity service.String
getName()
Gets the name of the stage configuration.String
getProgressStageClassName()
Gets the class name of the consuming progress stage.int
hashCode()
ResetStageConfig
setIdentityPasswordField(String identityPasswordField)
Sets the password field identifier.ResetStageConfig
setIdentityServiceUrl(String identityServiceUrl)
Sets the URL for the identity service.
-
-
-
Field Detail
-
NAME
public static final String NAME
Name of the stage configuration.- See Also:
- Constant Field Values
-
-
Method Detail
-
getIdentityServiceUrl
public String getIdentityServiceUrl()
Gets the URL for the identity service.- Returns:
- the identity service URL
-
setIdentityServiceUrl
public ResetStageConfig setIdentityServiceUrl(String identityServiceUrl)
Sets the URL for the identity service.- Parameters:
identityServiceUrl
- the identity service URL- Returns:
- this config instance
-
getIdentityPasswordField
public String getIdentityPasswordField()
Gets the password field identifier.- Returns:
- the password field name
-
setIdentityPasswordField
public ResetStageConfig setIdentityPasswordField(String identityPasswordField)
Sets the password field identifier.- Parameters:
identityPasswordField
- the password field name- 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
-
-