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

kenneth_suter
23.29.2007 14f210825823c17cff84d9221fa76673cbe27aa9
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/upgrader/UpgradeUserData.java
@@ -38,6 +38,8 @@
  File installPackage;
  Build buildToDownload;
  /**
   * Gets the OpenDS package (.zip) file whose contents will
   * be used in the upgrade/reversion.
@@ -56,4 +58,22 @@
    this.installPackage = installPackage;
  }
  /**
   * Gets the Build that will need to be downloaded before
   * the upgrade can begin.
   * @return Build representing the build to download
   */
  public Build getInstallPackageToDownload() {
    return buildToDownload;
  }
  /**
   * Sets the Build that will need to be downloaded before
   * the upgrade can begin.
   * @param build Build to download
   */
  public void setBuildToDownload(Build build) {
    this.buildToDownload = build;
  }
}