Interface WizardDef
- All Superinterfaces:
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
FieldsModifier and TypeFieldDescriptionstatic final StringConstant property name for "accessOperation" for internal storage and queries.static final StringConstant property name for "handler" for internal storage and queries.static final StringConstant property name for "id" for internal storage and queries.static final StringConstant property name for "name" for internal storage and queries.static final StringConstant property name for "wizardCancelRedirectUrl" for internal storage and queries.static final StringConstant property name for "wizardFinishRedirectUrl" for internal storage and queries.static final StringConstant property name for "wizardSteps" for internal storage and queries. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddWizardStepsElement(String page) Adds a new element to the list.Returns the value of the accessOperation attribute.Returns the value of the handler attribute.getName()Returns the value of the name attribute.Returns the value of the wizardCancelRedirectUrl attribute.Returns the value of the wizardFinishRedirectUrl attribute.Returns the value of the wizardSteps attribute.getWizardStepsElement(int index) Returns the element at the position index in the list.intReturns the number of elements in the "wizardSteps" containervoidremoveWizardStepsElement(int index) Removes the element at position index from the list.voidsetAccessOperation(String value) Sets the value of the accessOperation attribute.voidsetHandler(String value) Sets the value of the handler attribute.voidSets the value of the name attribute.voidsetWizardCancelRedirectUrl(String value) Sets the value of the wizardCancelRedirectUrl attribute.voidsetWizardFinishRedirectUrl(String value) Sets the value of the wizardFinishRedirectUrl attribute.voidsetWizardSteps(List<String> value) Sets the value of the wizardSteps attribute.voidswapWizardStepsElement(int index1, int index2) Swaps elements at positions index1 and index2 in the list.Methods inherited from interface net.anotheria.asg.data.DataObject
clone, getDefinedName, getDefinedParentName, getFootprint, getId, getLastUpdateTimestamp, getObjectInfo, getPropertyValue, toXMLNodeMethods inherited from interface net.anotheria.util.sorter.IComparable
compareTo
-
Field Details
-
PROP_ID
Constant property name for "id" for internal storage and queries.- See Also:
-
PROP_NAME
Constant property name for "name" for internal storage and queries.- See Also:
-
PROP_WIZARD_STEPS
Constant property name for "wizardSteps" for internal storage and queries.- See Also:
-
PROP_WIZARD_CANCEL_REDIRECT_URL
Constant property name for "wizardCancelRedirectUrl" for internal storage and queries.- See Also:
-
PROP_WIZARD_FINISH_REDIRECT_URL
Constant property name for "wizardFinishRedirectUrl" for internal storage and queries.- See Also:
-
LINK_PROP_HANDLER
Constant property name for "handler" for internal storage and queries.- See Also:
-
LINK_PROP_ACCESS_OPERATION
Constant property name for "accessOperation" for internal storage and queries.- See Also:
-
-
Method Details
-
getName
String getName()Returns the value of the name attribute. -
setName
Sets the value of the name attribute. -
getWizardSteps
Returns the value of the wizardSteps attribute. -
setWizardSteps
Sets the value of the wizardSteps attribute. -
getWizardCancelRedirectUrl
String getWizardCancelRedirectUrl()Returns the value of the wizardCancelRedirectUrl attribute. -
setWizardCancelRedirectUrl
Sets the value of the wizardCancelRedirectUrl attribute. -
getWizardFinishRedirectUrl
String getWizardFinishRedirectUrl()Returns the value of the wizardFinishRedirectUrl attribute. -
setWizardFinishRedirectUrl
Sets the value of the wizardFinishRedirectUrl attribute. -
getHandler
String getHandler()Returns the value of the handler attribute. -
setHandler
Sets the value of the handler attribute. -
getAccessOperation
String getAccessOperation()Returns the value of the accessOperation attribute. -
setAccessOperation
Sets the value of the accessOperation attribute. -
getWizardStepsSize
int getWizardStepsSize()Returns the number of elements in the "wizardSteps" container -
addWizardStepsElement
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
Returns the element at the position index in the list.
-