Uses of Interface
org.forgerock.selfservice.core.config.StageConfig
-
Packages that use StageConfig Package Description org.forgerock.selfservice.core This package contains the core implementation for the anonymous process service.org.forgerock.selfservice.core.config This package contains the service configuration.org.forgerock.selfservice.stages.captcha This package contains captcha stage implementation.org.forgerock.selfservice.stages.email This package contains a common email stage implementation.org.forgerock.selfservice.stages.kba This package contains a common user kba stage implementation.org.forgerock.selfservice.stages.parameters This package contains a parameter passing stage implementation.org.forgerock.selfservice.stages.registration This package contains a common user registration stage implementation.org.forgerock.selfservice.stages.reset This package contains a common reset password stage implementation.org.forgerock.selfservice.stages.user This package contains a common user related stage implementation. -
-
Uses of StageConfig in org.forgerock.selfservice.core
Classes in org.forgerock.selfservice.core with type parameters of type StageConfig Modifier and Type Interface Description interface
ProgressStage<C extends StageConfig>
Progress stage represents a single stage within the overall advance flow.class
ProgressStageBinding<C extends StageConfig>
Binds together the progress stage with its config.Methods in org.forgerock.selfservice.core with type parameters of type StageConfig Modifier and Type Method Description static <C extends StageConfig>
ProgressStageBinding<C>ProgressStageBinding. bind(ProgressStage<C> stage, C config)
Create a new binder instance.Methods in org.forgerock.selfservice.core that return types with arguments of type StageConfig Modifier and Type Method Description ProgressStage<StageConfig>
ProgressStageProvider. get(Class<? extends ProgressStage<StageConfig>> progressStageClass)
Given the progress stage class retrieves a corresponding instance of the class.Methods in org.forgerock.selfservice.core with parameters of type StageConfig Modifier and Type Method Description ProgressStageBinding<?>
ProgressStageBinder. getBinding(StageConfig config)
Method parameters in org.forgerock.selfservice.core with type arguments of type StageConfig Modifier and Type Method Description ProgressStage<StageConfig>
ProgressStageProvider. get(Class<? extends ProgressStage<StageConfig>> progressStageClass)
Given the progress stage class retrieves a corresponding instance of the class. -
Uses of StageConfig in org.forgerock.selfservice.core.config
Methods in org.forgerock.selfservice.core.config that return types with arguments of type StageConfig Modifier and Type Method Description List<StageConfig>
ProcessInstanceConfig. getStageConfigs()
Gets the list of stage configs.Method parameters in org.forgerock.selfservice.core.config with type arguments of type StageConfig Modifier and Type Method Description ProcessInstanceConfig
ProcessInstanceConfig. setStageConfigs(List<StageConfig> stageConfigs)
Sets the list of stage configs. -
Uses of StageConfig in org.forgerock.selfservice.stages.captcha
Classes in org.forgerock.selfservice.stages.captcha that implement StageConfig Modifier and Type Class Description class
CaptchaStageConfig
Configuration for the captcha stage. -
Uses of StageConfig in org.forgerock.selfservice.stages.email
Classes in org.forgerock.selfservice.stages.email that implement StageConfig Modifier and Type Class Description class
RetrieveEmailConfig
Configuration for the retrieve email stage.class
VerifyEmailAccountConfig
Configuration for the email account verification stage. -
Uses of StageConfig in org.forgerock.selfservice.stages.kba
Classes in org.forgerock.selfservice.stages.kba that implement StageConfig Modifier and Type Class Description class
AbstractKbaStageConfig<C extends AbstractKbaStageConfig<C>>
Defines the common configurations for the KBA stages.class
SecurityAnswerDefinitionConfig
Configuration for the KBA Security Answer Definition Stage.class
SecurityAnswerVerificationConfig
Configuration for the KBA Security Answer Verification Stage. -
Uses of StageConfig in org.forgerock.selfservice.stages.parameters
Classes in org.forgerock.selfservice.stages.parameters that implement StageConfig Modifier and Type Class Description class
ParametersConfig
Configuration for parameter passing stage. -
Uses of StageConfig in org.forgerock.selfservice.stages.registration
Classes in org.forgerock.selfservice.stages.registration that implement StageConfig Modifier and Type Class Description class
UserRegistrationConfig
Configuration for the user registration stage. -
Uses of StageConfig in org.forgerock.selfservice.stages.reset
Classes in org.forgerock.selfservice.stages.reset that implement StageConfig Modifier and Type Class Description class
ResetStageConfig
Configuration for the password reset stage. -
Uses of StageConfig in org.forgerock.selfservice.stages.user
Classes in org.forgerock.selfservice.stages.user that implement StageConfig Modifier and Type Class Description class
EmailUsernameConfig
Configuration for the email based user name retrieval stage.class
RetrieveUsernameConfig
Configuration for the retrieve username stage.class
UserDetailsConfig
Configuration for the user details stage.class
UserQueryConfig
Configuration for the user query stage.class
ValidateActiveAccountConfig
Configuration for the validate active account stage.
-