From bbadcb75d4629441e73ea04782ae2c5decf64fe3 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Mon, 17 Dec 2007 10:43:53 +0000
Subject: [PATCH] 2730: New - The setup command should perform some basic memory tuning Note: this issue is not fully covered by the proposed modifications but all that is missing in order to fix it is to figure out which are the default memory values that we want to propose in the setup.

---
 opends/src/quicksetup/org/opends/quicksetup/Installation.java |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/Installation.java b/opends/src/quicksetup/org/opends/quicksetup/Installation.java
index e882610..9b3e1c1 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Installation.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/Installation.java
@@ -251,6 +251,33 @@
   public static final String LDIF_DIFF = "ldif-diff";
 
   /**
+   * The default java properties file.
+   */
+  public static final String DEFAULT_JAVA_PROPERTIES_FILE = "java.properties";
+
+  /**
+   * The set java home and arguments properties file for Windows.
+   */
+  public static final String SET_JAVA_PROPERTIES_FILE_WINDOWS =
+    "set-java-home.bat";
+
+  /**
+   * script utils file for UNIX systems.
+   */
+  public static final String SCRIPT_UTIL_FILE_UNIX = "_script-util.sh";
+
+  /**
+   * script utils file for Windows.
+   */
+  public static final String SCRIPT_UTIL_FILE_WINDOWS = "_script-util.bat";
+
+  /**
+   * The set java home and arguments properties file for UNIX systems.
+   */
+  public static final String SET_JAVA_PROPERTIES_FILE_UNIX =
+    "set-java-home";
+
+  /**
    * Directories required to be present for this installation
    * to be considered valid.
    */

--
Gitblit v1.10.0