From 23faffa02e132a30c02f928e317c6f66ac373d06 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Mon, 23 Apr 2007 00:29:32 +0000
Subject: [PATCH] The commit contains code for the following:
---
opends/src/quicksetup/org/opends/quicksetup/upgrader/UpgradeUserData.java | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/upgrader/UpgradeUserData.java b/opends/src/quicksetup/org/opends/quicksetup/upgrader/UpgradeUserData.java
index e73d176..382449e 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/upgrader/UpgradeUserData.java
+++ b/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;
+ }
+
}
--
Gitblit v1.10.0