Uses of Interface
org.forgerock.selfservice.core.ProgressStage
-
Packages that use ProgressStage Package Description org.forgerock.selfservice.core This package contains the core implementation for the anonymous process service.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 ProgressStage in org.forgerock.selfservice.core
Methods in org.forgerock.selfservice.core that return ProgressStage 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 ProgressStage Modifier and Type Method Description static <C extends StageConfig>
ProgressStageBinding<C>ProgressStageBinding. bind(ProgressStage<C> stage, C config)
Create a new binder instance.Method parameters in org.forgerock.selfservice.core with type arguments of type ProgressStage 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 ProgressStage in org.forgerock.selfservice.stages.captcha
Classes in org.forgerock.selfservice.stages.captcha that implement ProgressStage Modifier and Type Class Description class
CaptchaStage
Stage is responsible for captcha based security. -
Uses of ProgressStage in org.forgerock.selfservice.stages.email
Classes in org.forgerock.selfservice.stages.email that implement ProgressStage Modifier and Type Class Description class
RetrieveEmailStage
Stage is responsible for retrieving the email.class
VerifyEmailAccountStage
Having retrieved the email address from the context or in response to the initial requirements, verifies the validity of the email address with the user who submitted the requirements via an email flow. -
Uses of ProgressStage in org.forgerock.selfservice.stages.kba
Classes in org.forgerock.selfservice.stages.kba that implement ProgressStage Modifier and Type Class Description class
AbstractKbaStage<C extends AbstractKbaStageConfig<?>>
Base class for KBA stages.class
SecurityAnswerDefinitionStage
Stage is responsible for supplying the KBA questions to the user and capturing the answers provided by the user.class
SecurityAnswerVerificationStage
Stage is responsible for verifying the answers provided by the user for the KBA questions. -
Uses of ProgressStage in org.forgerock.selfservice.stages.parameters
Classes in org.forgerock.selfservice.stages.parameters that implement ProgressStage Modifier and Type Class Description class
ParametersStage
Captures input parameters to be passed back out at the end of the process. -
Uses of ProgressStage in org.forgerock.selfservice.stages.registration
Classes in org.forgerock.selfservice.stages.registration that implement ProgressStage Modifier and Type Class Description class
UserRegistrationStage
Stage is responsible for registering the user supplied data using the underlying service. -
Uses of ProgressStage in org.forgerock.selfservice.stages.reset
Classes in org.forgerock.selfservice.stages.reset that implement ProgressStage Modifier and Type Class Description class
ResetStage
The reset password stage. -
Uses of ProgressStage in org.forgerock.selfservice.stages.user
Classes in org.forgerock.selfservice.stages.user that implement ProgressStage Modifier and Type Class Description class
EmailUsernameStage
Stage is responsible for retrieving the user name.class
RetrieveUsernameStage
Stage is responsible for retrieving the username.class
UserDetailsStage
Stage is responsible for request a new user json representation.class
UserQueryStage
Stage is responsible for querying the underlying service for a user based on the supplied query fields.class
ValidateActiveAccountStage
Stage is responsible for validating account status.
-