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

kenneth_suter
06.09.2007 43e8cc1e0b7576d94c96f07f64b25affb5b07af0
opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
@@ -162,7 +162,7 @@
  public void finishClicked(final WizardStep cStep, final QuickSetup qs) {
    if (cStep == Step.REVIEW) {
        updateUserDataForReviewPanel(qs);
        qs.launchInstallation();
        qs.launch();
        qs.setCurrentStep(Step.PROGRESS);
    } else {
        throw new IllegalStateException(
@@ -250,9 +250,7 @@
    if (installStatus.isInstalled() && !forceToDisplaySetup) {
      p = dlg.getInstalledPanel();
    } else {
      p = new FramePanel(dlg.getStepsPanel(),
              dlg.getCurrentStepPanel(),
              dlg.getButtonsPanel());
      p = super.createFramePanel(dlg);
    }
    return p;
  }
@@ -260,7 +258,7 @@
  /**
   * {@inheritDoc}
   */
  public Set<WizardStep> getWizardSteps() {
  public Set<? extends WizardStep> getWizardSteps() {
    return Collections.unmodifiableSet(new HashSet<WizardStep>(lstSteps));
  }
@@ -365,7 +363,7 @@
  /**
   * {@inheritDoc}
   */
  public ProgressStep getStatus()
  public ProgressStep getCurrentProgressStep()
  {
    return status;
  }
@@ -438,7 +436,7 @@
    argList.add(CONFIG_CLASS_NAME);
    argList.add("-c");
    argList.add(getConfigFilePath());
    argList.add(Utils.getPath(getInstallation().getCurrentConfigurationFile()));
    argList.add("-p");
    argList.add(String.valueOf(getUserData().getServerPort()));
    argList.add("-j");
@@ -494,7 +492,7 @@
    argList.add(CONFIG_CLASS_NAME);
    argList.add("-f");
    argList.add(getConfigFilePath());
    argList.add(Utils.getPath(getInstallation().getCurrentConfigurationFile()));
    argList.add("-n");
    argList.add(getBackendName());
@@ -543,7 +541,7 @@
    argList.add(CONFIG_CLASS_NAME);
    argList.add("-f");
    argList.add(getConfigFilePath());
    argList.add(Utils.getPath(getInstallation().getCurrentConfigurationFile()));
    argList.add("-n");
    argList.add(getBackendName());
    argList.add("-l");
@@ -590,7 +588,7 @@
    argList.add(CONFIG_CLASS_NAME);
    argList.add("-f");
    argList.add(getConfigFilePath());
    argList.add(Utils.getPath(getInstallation().getCurrentConfigurationFile()));
    argList.add("-n");
    argList.add(getBackendName());
    argList.add("-t");
@@ -729,15 +727,6 @@
  }
  /**
   * {@inheritDoc}
   */
  protected String getBinariesPath()
  {
    return Utils.getPath(getInstallationPath(),
        Utils.getBinariesRelativePath());
  }
  /**
   * Validate the data provided by the user in the server settings panel and
   * update the userData object according to that content.
   *