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 Detail

      • PROP_ID

        static final String PROP_ID
        Constant property name for "id" for internal storage and queries.
        See Also:
        Constant Field Values
      • PROP_NAME

        static final String PROP_NAME
        Constant property name for "name" for internal storage and queries.
        See Also:
        Constant Field Values
      • PROP_WIZARD_STEPS

        static final 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 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 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 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 String LINK_PROP_ACCESS_OPERATION
        Constant property name for "accessOperation" for internal storage and queries.
        See Also:
        Constant Field Values
    • Method Detail

      • getName

        String getName()
        Returns the value of the name attribute.
      • setName

        void setName​(String value)
        Sets the value of the name attribute.
      • getWizardSteps

        List<String> getWizardSteps()
        Returns the value of the wizardSteps attribute.
      • setWizardSteps

        void setWizardSteps​(List<String> value)
        Sets the value of the wizardSteps attribute.
      • getWizardCancelRedirectUrl

        String getWizardCancelRedirectUrl()
        Returns the value of the wizardCancelRedirectUrl attribute.
      • setWizardCancelRedirectUrl

        void setWizardCancelRedirectUrl​(String value)
        Sets the value of the wizardCancelRedirectUrl attribute.
      • getWizardFinishRedirectUrl

        String getWizardFinishRedirectUrl()
        Returns the value of the wizardFinishRedirectUrl attribute.
      • setWizardFinishRedirectUrl

        void setWizardFinishRedirectUrl​(String value)
        Sets the value of the wizardFinishRedirectUrl attribute.
      • getHandler

        String getHandler()
        Returns the value of the handler attribute.
      • setHandler

        void setHandler​(String value)
        Sets the value of the handler attribute.
      • getAccessOperation

        String getAccessOperation()
        Returns the value of the accessOperation attribute.
      • setAccessOperation

        void setAccessOperation​(String value)
        Sets the value of the accessOperation attribute.
      • getWizardStepsSize

        int getWizardStepsSize()
        Returns the number of elements in the "wizardSteps" container
      • addWizardStepsElement

        void addWizardStepsElement​(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

        String getWizardStepsElement​(int index)
        Returns the element at the position index in the list.