Uses of Class
net.anotheria.anosite.wizard.api.WizardStepAO
-
Packages that use WizardStepAO Package Description net.anotheria.anosite.wizard.api WizardAPI interface, implementation and utils.net.anotheria.anosite.wizard.handler Base wizard handler implementation and utilities. -
-
Uses of WizardStepAO in net.anotheria.anosite.wizard.api
Methods in net.anotheria.anosite.wizard.api that return WizardStepAO Modifier and Type Method Description WizardStepAOBaseWizardAPIImpl. adjustToNextStep(String wizardId)WizardStepAOWizardAPI. adjustToNextStep(String wizardId)Adjusting to next step.WizardStepAOBaseWizardAPIImpl. adjustToPreviousStep(String wizardId)WizardStepAOWizardAPI. adjustToPreviousStep(String wizardId)Adjusting to previous step.WizardStepAOBaseWizardAPIImpl. adjustToStep(String wizardId, int stepIndex)WizardStepAOWizardAPI. adjustToStep(String wizardId, int stepIndex)Adjusting to step.WizardStepAOBaseWizardAPIImpl. getCurrentStep(String wizardId)WizardStepAOBaseWizardAPIImpl.WizardData. getCurrentStep()WizardStepAOWizardAPI. getCurrentStep(String wizardId)Returns current step for wizard.Methods in net.anotheria.anosite.wizard.api that return types with arguments of type WizardStepAO Modifier and Type Method Description List<WizardStepAO>BaseWizardAPIImpl. getCompletedSteps(String wizardId)List<WizardStepAO>BaseWizardAPIImpl.WizardData. getCompletedSteps()List<WizardStepAO>WizardAPI. getCompletedSteps(String wizardId)Returns collection off steps which were already completed (passed).List<WizardStepAO>WizardAO. getWizardSteps()Methods in net.anotheria.anosite.wizard.api with parameters of type WizardStepAO Modifier and Type Method Description voidBaseWizardAPIImpl.WizardData. addCompletedStep(WizardStepAO completed)AddWizardStepAOto completed step collection if such still does not exists there.voidBaseWizardAPIImpl. allowNextStepNavigation(WizardAO wizard, WizardStepAO wizardStep)voidWizardAPI. allowNextStepNavigation(WizardAO wizard, WizardStepAO wizardStep)Allow next step.voidBaseWizardAPIImpl. allowPreviousStepNavigation(WizardAO wizard, WizardStepAO wizardStep)voidWizardAPI. allowPreviousStepNavigation(WizardAO wizard, WizardStepAO wizardStep)Allow previous step.voidBaseWizardAPIImpl. allowWizardCancel(WizardAO wizard, WizardStepAO wizardStep)voidWizardAPI. allowWizardCancel(WizardAO wizard, WizardStepAO wizardStep)Allow wizard cancel step.voidBaseWizardAPIImpl. allowWizardFinish(WizardAO wizard, WizardStepAO wizardStep)voidWizardAPI. allowWizardFinish(WizardAO wizard, WizardStepAO wizardStep)Allow wizard finish step.voidBaseWizardAPIImpl. allowWizardNavigateTo(WizardAO wizard, WizardStepAO wizardStep)voidWizardAPI. allowWizardNavigateTo(WizardAO wizard, WizardStepAO wizardStep)Allow navigate To command.voidBaseWizardAPIImpl.WizardData. setCurrentStep(WizardStepAO currentStep)Method parameters in net.anotheria.anosite.wizard.api with type arguments of type WizardStepAO Modifier and Type Method Description voidWizardAO. setWizardSteps(List<WizardStepAO> wizardSteps) -
Uses of WizardStepAO in net.anotheria.anosite.wizard.handler
Methods in net.anotheria.anosite.wizard.handler with parameters of type WizardStepAO Modifier and Type Method Description protected WizardHandlerResponseBaseWizardHandler. handleIncomingCommand(jakarta.servlet.http.HttpServletRequest req, WizardAO wizard, WizardStepAO currentStep, boolean isSubmit)Handle incoming command method.protected booleanBaseWizardHandler. isCancellationAllowed(jakarta.servlet.http.HttpServletRequest req, WizardAO wizard, WizardStepAO step, boolean isSubmit)Returns true if we can cancel wizard.protected booleanBaseWizardHandler. isFinishAllowed(jakarta.servlet.http.HttpServletRequest req, WizardAO wizard, WizardStepAO step, boolean isSubmit)Returns true if we can finish wizard.protected booleanBaseWizardHandler. isNextStepAllowed(jakarta.servlet.http.HttpServletRequest req, WizardAO wizard, WizardStepAO step, boolean isSubmit)Returns true if we can be forwarded to next step.protected booleanBaseWizardHandler. isPreviousStepAllowed(jakarta.servlet.http.HttpServletRequest req, WizardAO wizard, WizardStepAO step, boolean isSubmit)Returns true if we can be forwarded to previous step.
-