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.String LINK_PROP_ACCESS_OPERATION
      Constant property name for "accessOperation" for internal storage and queries.
      static java.lang.String LINK_PROP_HANDLER
      Constant property name for "handler" for internal storage and queries.
      static java.lang.String PROP_ID
      Constant property name for "id" for internal storage and queries.
      static java.lang.String PROP_NAME
      Constant property name for "name" for internal storage and queries.
      static java.lang.String PROP_WIZARD_CANCEL_REDIRECT_URL
      Constant property name for "wizardCancelRedirectUrl" for internal storage and queries.
      static java.lang.String PROP_WIZARD_FINISH_REDIRECT_URL
      Constant property name for "wizardFinishRedirectUrl" for internal storage and queries.
      static java.lang.String PROP_WIZARD_STEPS
      Constant property name for "wizardSteps" for internal storage and queries.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void addWizardStepsElement​(java.lang.String page)
      Adds a new element to the list.
      java.lang.String getAccessOperation()
      Returns the value of the accessOperation attribute.
      java.lang.String getHandler()
      Returns the value of the handler attribute.
      java.lang.String getName()
      Returns the value of the name attribute.
      java.lang.String getWizardCancelRedirectUrl()
      Returns the value of the wizardCancelRedirectUrl attribute.
      java.lang.String getWizardFinishRedirectUrl()
      Returns the value of the wizardFinishRedirectUrl attribute.
      java.util.List<java.lang.String> getWizardSteps()
      Returns the value of the wizardSteps attribute.
      java.lang.String getWizardStepsElement​(int index)
      Returns the element at the position index in the list.
      int getWizardStepsSize()
      Returns the number of elements in the "wizardSteps" container
      void removeWizardStepsElement​(int index)
      Removes the element at position index from the list.
      void setAccessOperation​(java.lang.String value)
      Sets the value of the accessOperation attribute.
      void setHandler​(java.lang.String value)
      Sets the value of the handler attribute.
      void setName​(java.lang.String value)
      Sets the value of the name attribute.
      void setWizardCancelRedirectUrl​(java.lang.String value)
      Sets the value of the wizardCancelRedirectUrl attribute.
      void setWizardFinishRedirectUrl​(java.lang.String value)
      Sets the value of the wizardFinishRedirectUrl attribute.
      void setWizardSteps​(java.util.List<java.lang.String> value)
      Sets the value of the wizardSteps attribute.
      void swapWizardStepsElement​(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, toXMLNode
      • Methods inherited from interface net.anotheria.util.sorter.IComparable

        compareTo
    • 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.