Interface WizardDef
-
- All Superinterfaces:
java.lang.Cloneable,net.anotheria.asg.data.DataObject,net.anotheria.util.sorter.IComparable
- All Known Implementing Classes:
WizardDefDocument
public interface WizardDef extends net.anotheria.asg.data.DataObject, net.anotheria.util.sorter.IComparable
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringLINK_PROP_ACCESS_OPERATIONConstant property name for "accessOperation" for internal storage and queries.static java.lang.StringLINK_PROP_HANDLERConstant property name for "handler" for internal storage and queries.static java.lang.StringPROP_IDConstant property name for "id" for internal storage and queries.static java.lang.StringPROP_NAMEConstant property name for "name" for internal storage and queries.static java.lang.StringPROP_WIZARD_CANCEL_REDIRECT_URLConstant property name for "wizardCancelRedirectUrl" for internal storage and queries.static java.lang.StringPROP_WIZARD_FINISH_REDIRECT_URLConstant property name for "wizardFinishRedirectUrl" for internal storage and queries.static java.lang.StringPROP_WIZARD_STEPSConstant property name for "wizardSteps" for internal storage and queries.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddWizardStepsElement(java.lang.String page)Adds a new element to the list.java.lang.StringgetAccessOperation()Returns the value of the accessOperation attribute.java.lang.StringgetHandler()Returns the value of the handler attribute.java.lang.StringgetName()Returns the value of the name attribute.java.lang.StringgetWizardCancelRedirectUrl()Returns the value of the wizardCancelRedirectUrl attribute.java.lang.StringgetWizardFinishRedirectUrl()Returns the value of the wizardFinishRedirectUrl attribute.java.util.List<java.lang.String>getWizardSteps()Returns the value of the wizardSteps attribute.java.lang.StringgetWizardStepsElement(int index)Returns the element at the position index in the list.intgetWizardStepsSize()Returns the number of elements in the "wizardSteps" containervoidremoveWizardStepsElement(int index)Removes the element at position index from the list.voidsetAccessOperation(java.lang.String value)Sets the value of the accessOperation attribute.voidsetHandler(java.lang.String value)Sets the value of the handler attribute.voidsetName(java.lang.String value)Sets the value of the name attribute.voidsetWizardCancelRedirectUrl(java.lang.String value)Sets the value of the wizardCancelRedirectUrl attribute.voidsetWizardFinishRedirectUrl(java.lang.String value)Sets the value of the wizardFinishRedirectUrl attribute.voidsetWizardSteps(java.util.List<java.lang.String> value)Sets the value of the wizardSteps attribute.voidswapWizardStepsElement(int index1, int index2)Swaps elements at positions index1 and index2 in the list.
-
-
-
Field Detail
-
PROP_ID
static final java.lang.String PROP_ID
Constant property name for "id" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_NAME
static final java.lang.String PROP_NAME
Constant property name for "name" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_WIZARD_STEPS
static final java.lang.String PROP_WIZARD_STEPS
Constant property name for "wizardSteps" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_WIZARD_CANCEL_REDIRECT_URL
static final java.lang.String PROP_WIZARD_CANCEL_REDIRECT_URL
Constant property name for "wizardCancelRedirectUrl" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_WIZARD_FINISH_REDIRECT_URL
static final java.lang.String PROP_WIZARD_FINISH_REDIRECT_URL
Constant property name for "wizardFinishRedirectUrl" for internal storage and queries.- See Also:
- Constant Field Values
-
LINK_PROP_HANDLER
static final java.lang.String LINK_PROP_HANDLER
Constant property name for "handler" for internal storage and queries.- See Also:
- Constant Field Values
-
LINK_PROP_ACCESS_OPERATION
static final java.lang.String LINK_PROP_ACCESS_OPERATION
Constant property name for "accessOperation" for internal storage and queries.- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the value of the name attribute.
-
setName
void setName(java.lang.String value)
Sets the value of the name attribute.
-
getWizardSteps
java.util.List<java.lang.String> getWizardSteps()
Returns the value of the wizardSteps attribute.
-
setWizardSteps
void setWizardSteps(java.util.List<java.lang.String> value)
Sets the value of the wizardSteps attribute.
-
getWizardCancelRedirectUrl
java.lang.String getWizardCancelRedirectUrl()
Returns the value of the wizardCancelRedirectUrl attribute.
-
setWizardCancelRedirectUrl
void setWizardCancelRedirectUrl(java.lang.String value)
Sets the value of the wizardCancelRedirectUrl attribute.
-
getWizardFinishRedirectUrl
java.lang.String getWizardFinishRedirectUrl()
Returns the value of the wizardFinishRedirectUrl attribute.
-
setWizardFinishRedirectUrl
void setWizardFinishRedirectUrl(java.lang.String value)
Sets the value of the wizardFinishRedirectUrl attribute.
-
getHandler
java.lang.String getHandler()
Returns the value of the handler attribute.
-
setHandler
void setHandler(java.lang.String value)
Sets the value of the handler attribute.
-
getAccessOperation
java.lang.String getAccessOperation()
Returns the value of the accessOperation attribute.
-
setAccessOperation
void setAccessOperation(java.lang.String value)
Sets the value of the accessOperation attribute.
-
getWizardStepsSize
int getWizardStepsSize()
Returns the number of elements in the "wizardSteps" container
-
addWizardStepsElement
void addWizardStepsElement(java.lang.String page)
Adds a new element to the list.
-
removeWizardStepsElement
void removeWizardStepsElement(int index)
Removes the element at position index from the list.
-
swapWizardStepsElement
void swapWizardStepsElement(int index1, int index2)Swaps elements at positions index1 and index2 in the list.
-
getWizardStepsElement
java.lang.String getWizardStepsElement(int index)
Returns the element at the position index in the list.
-
-