From 100e551066fc2b42a7578906a0a7a734896a2961 Mon Sep 17 00:00:00 2001
From: abobrov <abobrov@localhost>
Date: Tue, 08 Jan 2008 10:13:19 +0000
Subject: [PATCH] - [Issue 1595] need a fast way to prime the FileSystemEntryCache: Add generic entry cache pre-load mechanism which is backend and entry cache implementations independent.
---
opends/src/server/org/opends/server/backends/RootDSEBackend.java | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/backends/RootDSEBackend.java b/opends/src/server/org/opends/server/backends/RootDSEBackend.java
index 959d022..f68a60b 100644
--- a/opends/src/server/org/opends/server/backends/RootDSEBackend.java
+++ b/opends/src/server/org/opends/server/backends/RootDSEBackend.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Portions Copyright 2006-2007 Sun Microsystems, Inc.
+ * Portions Copyright 2006-2008 Sun Microsystems, Inc.
*/
package org.opends.server.backends;
@@ -1529,5 +1529,16 @@
return new ConfigChangeResult(resultCode, adminActionRequired, messages);
}
+
+
+
+ /**
+ * {@inheritDoc}
+ */
+ public boolean collectStoredDNs(Collection<DN> storedDNs)
+ throws UnsupportedOperationException
+ {
+ throw new UnsupportedOperationException("Operation not supported.");
+ }
}
--
Gitblit v1.10.0