From 39939cbeb2965312e1fee64c4cbf824b37ea857c Mon Sep 17 00:00:00 2001
From: jpikus <jpikus@localhost>
Date: Fri, 20 Mar 2009 14:40:00 +0000
Subject: [PATCH] fix incorrect svn revision and add svn url in start-ds -F
---
opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java b/opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java
index e2fffe8..9d47a6e 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java
@@ -254,6 +254,8 @@
String.valueOf(DynamicConstants.VERSION_QUALIFIER));
bi.values.put(REVISION_NUMBER,
String.valueOf(DynamicConstants.REVISION_NUMBER));
+ bi.values.put(URL_REPOSITORY,
+ String.valueOf(DynamicConstants.URL_REPOSITORY));
bi.values.put(FIX_IDS, DynamicConstants.FIX_IDS);
bi.values.put(DEBUG_BUILD, String.valueOf(DynamicConstants.DEBUG_BUILD));
bi.values.put(BUILD_OS, DynamicConstants.BUILD_OS);
@@ -341,6 +343,15 @@
}
/**
+ * Gets the SVN URL repository.
+ *
+ * @return String representing the SVN URL repository
+ */
+ public String getURLRepository() {
+ return new String(values.get(URL_REPOSITORY));
+ }
+
+ /**
* Gets the set of IDs representing <code>IncompatibleVersionEvents</code>.
* @return set of integers representing events
* @see org.opends.server.util.VersionCompatibilityIssue
--
Gitblit v1.10.0