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

lutoff
18.14.2008 ebf357c00c505d1406f65ab9438e4fecfc1a2200
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/Application.java
@@ -180,8 +180,16 @@
  public Installation getInstallation() {
    if (installation == null) {
      String installPath = getInstallationPath();
      String instancePath = getInstancePath();
      if (installPath != null) {
        installation = new Installation(installPath);
        if (instancePath == null)
        {
          installation = new Installation(installPath, installPath);
        }
        else
        {
          installation = new Installation(installPath, instancePath);
        }
      }
    }
    return installation;
@@ -538,6 +546,13 @@
  public abstract String getInstallationPath();
  /**
   * Returns the instance path.
   * @return the instance path.
   */
  public abstract String getInstancePath();
  /**
   * Gets the current step.
   * @return ProgressStep representing the current step
   */