From fceec4773fdc91fa7e11334a56f0403fd69292ed Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Wed, 20 Jun 2007 18:27:41 +0000
Subject: [PATCH] This refactoring includes the following changes to the JE backend: - Extracted common interface DatabaseContainer from DN2ID, ID2Entry, etc... classes. - Moved database read and write methods from EntryContainer to DatabaseContainer. - Added index configuration to the XML based admin framework. - Removed redundant configuration objects (Config, IndexConfig). - Added exclusive/shared lock to EntryContainer. All access to an EntryContainer must acquire a lock before using the internal DatabaseContainers or making configuration changes. - Added the ability to add/remove/modify indexes with the backend online. Server will issue rebuild required warning when adding new indexes or sub-indexes (equality, substring, presence...). - Added the ability to change the index entry limit for both the backend and each index with the backend online. Server will issue rebuild required warning if the previous limit has been exceeded. - Added the ability to change entry compression and index substring length setting while the backend is online. - Added a persistent state database to each EntryContainer to persist backend configuration between server restarts. Server will issue rebuild required warning if a new index is added when the backend is offline. - Added a trusted flag to indexes so that non existent keys will not be interpreted as an empty entry ID set when an index is untrusted. An index is untrusted when it is added to an non-empty EntryContainer or an inconsistency is detected. Server will issue warning on startup to rebuild the index. - Fixed a issue where the LDIF import process stops responding if the temporary import dir is full or unwritable.
---
opendj-sdk/opends/src/server/org/opends/server/messages/ExtensionsMessages.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/messages/ExtensionsMessages.java b/opendj-sdk/opends/src/server/org/opends/server/messages/ExtensionsMessages.java
index 9ad8cf2..660702a 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/messages/ExtensionsMessages.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/messages/ExtensionsMessages.java
@@ -3964,7 +3964,7 @@
/**
* The message ID for the message that will be used if SASL DIGEST-MD5
- * authentication fails because an error occured while trying to get the
+ * authentication fails because an error occurred while trying to get the
* clear-text password value(s) from a user's entry.
*/
public static final int MSGID_SASLDIGESTMD5_CANNOT_GET_REVERSIBLE_PASSWORDS =
@@ -3974,7 +3974,7 @@
/**
* The message ID for the message that will be used if SASL CRAM-MD5
- * authentication fails because an error occured while trying to get the
+ * authentication fails because an error occurred while trying to get the
* clear-text password value(s) from a user's entry.
*/
public static final int MSGID_SASLCRAMMD5_CANNOT_GET_REVERSIBLE_PASSWORDS =
@@ -4046,7 +4046,7 @@
* The message ID for the message that will be used if an error occurs while
* attempting to retrieve an entry as a potential member of the static group.
* This takes three arguments, which are the DN of the target entry, the DN of
- * the static group entry, and a message explaining the problem that occured.
+ * the static group entry, and a message explaining the problem that occurred.
*/
public static final int MSGID_STATICMEMBERS_CANNOT_GET_ENTRY =
CATEGORY_MASK_EXTENSIONS | SEVERITY_MASK_MILD_ERROR | 384;
@@ -7465,11 +7465,11 @@
"Unable to retrieve an existing cache entry from the " +
"file system entry cache");
registerMessage(MSGID_FSCACHE_CANNOT_SET_JE_MEMORY_PCT,
- "Internal error occured while trying to set the entry " +
+ "Internal error occurred while trying to set the entry " +
"cache backend internal cache size as percentage. The " +
"previous or default value will be used instead");
registerMessage(MSGID_FSCACHE_CANNOT_SET_JE_MEMORY_SIZE,
- "Internal error occured while trying to set the entry " +
+ "Internal error occurred while trying to set the entry " +
"cache backend internal cache size in bytes. The " +
"previous or default value will be used instead");
registerMessage(MSGID_FSCACHE_OFFLINE_STATE_FAIL,
--
Gitblit v1.10.0