com.microstrategy.web.app.beans.WizardBean |
Description: This application bean can be used to present the user with a series of steps or pages that must be answered in a predetermined order.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract Enumeration |
getAllWizardSteps()
Returns enumeration of all steps in this Wizards.
| ||||||||||
abstract int |
getCurrentPosition()
Returns current step index or position.
| ||||||||||
abstract WizardStepBean |
getCurrentStep()
Returns instance of current step bean.
| ||||||||||
abstract String |
getFinishEventArgs()
Returns a string consisted of all arguments to be set in Finish event.
| ||||||||||
abstract int |
getFinishEventID()
Returns event ID associated to Finishing Wizard flow.
| ||||||||||
abstract String |
getFinishPage()
Returns name of page where to redirect after processing finish event.
| ||||||||||
abstract WizardStepBean |
getNextStep()
Returns instance of next step bean.
| ||||||||||
abstract WizardStepBean |
getPreviousStep()
Returns instance of previous step bean.
| ||||||||||
abstract int |
getRequiredStep()
Returns the number of the step must be completed before finishing the wizard
| ||||||||||
abstract String |
getTargetState()
Returns the stored state of the target bean
| ||||||||||
abstract int |
getTotalSteps()
Returns total number of steps in Wizard.
| ||||||||||
abstract void |
setCurrentPosition(int currentPos)
Sets current step index or position.
| ||||||||||
abstract void |
setFinishEventArgs(String value)
Specifies all arguments of finish Event.
| ||||||||||
abstract void |
setFinishEventID(int value)
Specifies which event to trigger when Wizard is finished.
| ||||||||||
abstract void |
setFinishPage(String pageName)
Specifies name of page where to redirect after processing finish event.
| ||||||||||
abstract void |
setRequiredStep(int value)
Sets the number of the step must be completed before finishing the wizard
| ||||||||||
abstract void |
setTargetState(String value)
Used to store the current state of the target bean.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Returns enumeration of all steps in this Wizards.
Returns current step index or position.
Returns instance of current step bean.
WizardStepBean
instance of the current step
Returns a string consisted of all arguments to be set in Finish event.
Returns event ID associated to Finishing Wizard flow.
Returns name of page where to redirect after processing finish event.
Returns instance of next step bean.
WizardStepBean
instance representing the next step
Returns instance of previous step bean.
WizardStepBean
instance representing the previous step
Returns the number of the step must be completed before finishing the wizard
Returns the stored state of the target bean
Returns total number of steps in Wizard.
Sets current step index or position.
currentPos | indicating the current index step position. |
---|
Specifies all arguments of finish Event.
value | String representing the different arguments of the finish event (specified
by the getFinishEventID() method). This value will have following format: argId1=val1;arg2=val2
|
---|
Specifies which event to trigger when Wizard is finished.
value | identifier of the event ID to process when the wizard is finished. |
---|
Specifies name of page where to redirect after processing finish event.
pageName | String page name |
---|
Sets the number of the step must be completed before finishing the wizard
value | an int with the required step number |
---|
Used to store the current state of the target bean.
value | a String containing the state of the target bean |
---|