From 51b5fb4e99e41679e1be34a86f4448554fcb938f Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 01 Jan 2007 20:51:56 +0000
Subject: [PATCH] Add two new server properties:
---
opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java b/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java
index 3010a9b..d3035d1 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -2131,6 +2131,30 @@
/**
+ * The name of the system property that can be used to specify the path to the
+ * directory in which the server lock files should be written. If this is not
+ * set, then the server will use a directory named "locks" below the server
+ * root. Note that if the server is ever started with a different lock file
+ * directory than was used for the previous startup, then the server
+ * administrator must ensure that the instance is not already running.
+ */
+ public static final String PROPERTY_LOCK_DIRECTORY =
+ "org.opends.server.LockDirectory";
+
+
+
+ /**
+ * The name of the system property that can be used to specify the path to the
+ * directory in which the schema configuration files may be found. If this is
+ * not set, then the server wiill use a directory named "schema" below the
+ * server root.
+ */
+ public static final String PROPERTY_SCHEMA_DIRECTORY =
+ "org.opends.server.SchemaDirectory";
+
+
+
+ /**
* The name of a command-line script used to launch an administrative tool.
*/
public static final String PROPERTY_SCRIPT_NAME =
--
Gitblit v1.10.0