Class WizardStep

java.lang.Object
com.morpheusdata.model.MorpheusModel
com.morpheusdata.model.WizardStep
All Implemented Interfaces:
Serializable

public class WizardStep extends MorpheusModel
Represents a single step in a wizard flow. Each step contains optionTypes and optionTypeFieldGroups for collecting data, along with validation logic.
Since:
1.2.6
See Also:
  • Field Details

  • Constructor Details

  • Method Details

    • getCode

      public String getCode()
      Returns the unique code identifier for this wizard step
      Returns:
      step code
    • setCode

      public void setCode(String code)
      Sets the unique code identifier for this wizard step
      Parameters:
      code - step code
    • getName

      public String getName()
      Returns the display name for this wizard step
      Returns:
      step name
    • setName

      public void setName(String name)
      Sets the display name for this wizard step
      Parameters:
      name - step name
    • getDescription

      public String getDescription()
      Returns a description of this wizard step's purpose
      Returns:
      step description
    • setDescription

      public void setDescription(String description)
      Sets a description of this wizard step's purpose
      Parameters:
      description - step description
    • getOptionTypes

      public List<OptionType> getOptionTypes()
      Returns the option types for this wizard step
      Returns:
      list of OptionType
    • setOptionTypes

      public void setOptionTypes(List<OptionType> optionTypes)
      Sets the option types for this wizard step
      Parameters:
      optionTypes - list of OptionType
    • getOptionTypeFieldGroups

      public List<OptionTypeFieldGroup> getOptionTypeFieldGroups()
      Returns the option type field groups for this wizard step
      Returns:
      list of OptionTypeFieldGroup
    • setOptionTypeFieldGroups

      public void setOptionTypeFieldGroups(List<OptionTypeFieldGroup> optionTypeFieldGroups)
      Sets the option type field groups for this wizard step
      Parameters:
      optionTypeFieldGroups - list of OptionTypeFieldGroup