From 3dfb061cbafd3a97c9359f739942924a8ee525f1 Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Wed, 02 Nov 2011 12:07:15 +0000
Subject: [PATCH] Fix for OPENDJ-222 : Renamed environment variables to OPENDJ_... Updated scripts so that if OPENDJ_JAVA_HOME and OPENDJ_JAVA_ARGS are not defined, we look at the legacy OPENDS_... ones.

---
 opends/src/server/org/opends/server/schema/SchemaConstants.java |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/opends/src/server/org/opends/server/schema/SchemaConstants.java b/opends/src/server/org/opends/server/schema/SchemaConstants.java
index 1ee117c..8decf70 100644
--- a/opends/src/server/org/opends/server/schema/SchemaConstants.java
+++ b/opends/src/server/org/opends/server/schema/SchemaConstants.java
@@ -38,8 +38,12 @@
   /**
    * The IANA-assigned base OID for all things under the OpenDS umbrella.
    */
-  public static final String OID_OPENDS_BASE = "1.3.6.1.4.1.26027";
+  private static final String OID_OPENDS_BASE = "1.3.6.1.4.1.26027";
 
+  /**
+   * The IANA-assigned base OID for all things under the OpenDS umbrella.
+   */
+  private static final String OID_OPENDJ_BASE = "1.3.6.1.4.1.36733.2.1";
 
 
   /**

--
Gitblit v1.10.0