mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

kenneth_suter
28.39.2007 7ec591ddc0861edc2fbee5ef0eabac4e023de1a6
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/InstallProgressStep.java
@@ -102,11 +102,27 @@
  ENABLING_WINDOWS_SERVICE,
  /**
   * User is waiting for current task to finish
   * so that the operation can be canceled.
   */
  WAITING_TO_CANCEL,
  /**
   * Canceling install.
   */
  CANCELING,
  /**
   * Installation finished successfully.
   */
  FINISHED_SUCCESSFULLY,
  /**
   * User canceled installation.
   */
  FINISHED_CANCELED,
  /**
   * Installation finished with an error.
   */
  FINISHED_WITH_ERROR;
@@ -116,6 +132,7 @@
   */
  public boolean isLast() {
    return this == FINISHED_SUCCESSFULLY ||
            this == FINISHED_CANCELED ||
    this == FINISHED_WITH_ERROR;
  }