Class ParametersConfig
- java.lang.Object
-
- org.forgerock.selfservice.stages.parameters.ParametersConfig
-
- All Implemented Interfaces:
StageConfig
public final class ParametersConfig extends Object implements StageConfig
Configuration for parameter passing stage.
-
-
Constructor Summary
Constructors Constructor Description ParametersConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getName()
Gets the name of the stage configuration.List<String>
getParameterNames()
Return the list of passed parameter names.String
getProgressStageClassName()
Gets the class name of the consuming progress stage.int
hashCode()
ParametersConfig
setParameterNames(List<String> parameterNames)
Set the list of passed parameter names.
-
-
-
Field Detail
-
NAME
public static final String NAME
Name of the stage configuration.- See Also:
- Constant Field Values
-
-
Method Detail
-
getParameterNames
public List<String> getParameterNames()
Return the list of passed parameter names.- Returns:
- parameter name list
-
setParameterNames
public ParametersConfig setParameterNames(List<String> parameterNames)
Set the list of passed parameter names.- Parameters:
parameterNames
- parameter name list- Returns:
- this config object
-
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
-
-