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/ui/FieldName.java | 27 ++++++++++++++++++++++++++-
1 files changed, 26 insertions(+), 1 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/ui/FieldName.java b/opends/src/quicksetup/org/opends/quicksetup/ui/FieldName.java
index 8a3fdf8..01fbf9b 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/ui/FieldName.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/FieldName.java
@@ -41,6 +41,8 @@
{
/**
* The value associated with this is a String.
+ * The upgrader uses this field to indicate the
+ * location of the server to upgrade.
*/
SERVER_LOCATION,
/**
@@ -114,6 +116,29 @@
/**
* The value associated with this is a Set of String.
*/
- EXTERNAL_LOG_FILES
+ EXTERNAL_LOG_FILES,
+
+ /**
+ * Indicates whether the upgrade will need to first download
+ * an OpenDS install package (.zip) to download or the
+ * upgrader will use a file that has already been
+ * downloaded. The value of this field is boolean and if
+ * true must be accompanied by a value for UPGRADE_BUILD_TO_DOWNLOAD.
+ * If false UPGRADE_FILE must be specified.
+ */
+ UPGRADE_DOWNLOAD,
+
+ /**
+ * Display name of the build to which the upgrader
+ * will upgrade the build indicated by SERVER_LOCATION.
+ */
+ UPGRADE_BUILD_TO_DOWNLOAD,
+
+ /**
+ * Local OpenDS install package (.zip) file containing
+ * a build to which the build indicated by SERVER_LOCATION
+ * will be upgraded.
+ */
+ UPGRADE_FILE
}
--
Gitblit v1.10.0