Uses of Class
net.anotheria.anosite.wizard.api.WizardAO
-
Packages that use WizardAO 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 WizardAO in net.anotheria.anosite.wizard.api
Methods in net.anotheria.anosite.wizard.api that return WizardAO Modifier and Type Method Description WizardAOBaseWizardAPIImpl. getWizard(String wizardId)WizardAOWizardAPI. getWizard(String wizardId)Returns wizard with selected id.WizardAOBaseWizardAPIImpl. getWizardByName(String wizardName)WizardAOWizardAPI. getWizardByName(String wizardName)Returns wizard with selected name.Methods in net.anotheria.anosite.wizard.api with parameters of type WizardAO Modifier and Type Method Description 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.booleanBaseWizardAPIImpl. cancelWizard(WizardAO wizard)booleanWizardAPI. cancelWizard(WizardAO wizard)Cancel wizard.booleanBaseWizardAPIImpl. finishWizard(WizardAO wizard)booleanWizardAPI. finishWizard(WizardAO wizard)Finish wizard. -
Uses of WizardAO in net.anotheria.anosite.wizard.handler
Methods in net.anotheria.anosite.wizard.handler with parameters of type WizardAO 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.
-