Class UserDetailsConfig
- java.lang.Object
-
- org.forgerock.selfservice.stages.user.UserDetailsConfig
-
- All Implemented Interfaces:
StageConfig
public final class UserDetailsConfig extends Object implements StageConfig
Configuration for the user details stage.- Since:
- 0.2.0
-
-
Constructor Summary
Constructors Constructor Description UserDetailsConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getIdentityEmailField()
Gets the field name for the identity email address.String
getName()
Gets the name of the stage configuration.String
getProgressStageClassName()
Gets the class name of the consuming progress stage.int
hashCode()
UserDetailsConfig
setIdentityEmailField(String identityEmailField)
Sets the field name for the identity email address.
-
-
-
Field Detail
-
NAME
public static final String NAME
Name of the stage configuration.- See Also:
- Constant Field Values
-
-
Method Detail
-
getIdentityEmailField
public String getIdentityEmailField()
Gets the field name for the identity email address.- Returns:
- the identity email address field name
-
setIdentityEmailField
public UserDetailsConfig setIdentityEmailField(String identityEmailField)
Sets the field name for the identity email address.- Parameters:
identityEmailField
- the identity email address 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
-
-