1 package com.github.sbugat.rundeckmonitor.wizard;
2
3 /**
4 * Steps of the configuration wizard.
5 *
6 * @author Sylvain Bugat
7 *
8 */
9 public enum ConfigurationWizardStep {
10
11 /** RunDeck wizard step. */
12 RUNDECK_STEP,
13 /** RunDeck project wizard step. */
14 PROJECT_STEP,
15 /** RunDeck monitor wizard step. */
16 MONITOR_STEP;
17 }