From 48e73e27e5a6b254471fabeefa3a197dd071c1b8 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 02 Oct 2006 16:32:07 +0000
Subject: [PATCH] Perform significant refactoring in the core and plugin code in order to help make it easier for external developers to extend OpenDS. In particular, this is a big step towards eliminating the need for developers to reference anything in the core package, and it's also a signficant simplification to the plugin API because it helps expose which operation methods are safe to call at various points in the plugin processing.
---
opends/src/server/org/opends/server/backends/jeb/BackendImpl.java | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/opends/src/server/org/opends/server/backends/jeb/BackendImpl.java b/opends/src/server/org/opends/server/backends/jeb/BackendImpl.java
index a0b575e..f838746 100644
--- a/opends/src/server/org/opends/server/backends/jeb/BackendImpl.java
+++ b/opends/src/server/org/opends/server/backends/jeb/BackendImpl.java
@@ -58,23 +58,23 @@
import org.opends.server.config.ConfigException;
import org.opends.server.config.DNConfigAttribute;
import org.opends.server.core.AddOperation;
-import org.opends.server.core.CancelledOperationException;
import org.opends.server.core.DeleteOperation;
-import org.opends.server.core.DirectoryException;
import org.opends.server.core.DirectoryServer;
-import org.opends.server.core.InitializationException;
import org.opends.server.core.ModifyOperation;
import org.opends.server.core.ModifyDNOperation;
import org.opends.server.core.SearchOperation;
import org.opends.server.types.BackupConfig;
import org.opends.server.types.BackupDirectory;
+import org.opends.server.types.CancelledOperationException;
import org.opends.server.types.ConfigChangeResult;
import org.opends.server.types.DebugLogCategory;
import org.opends.server.types.DebugLogSeverity;
import org.opends.server.types.DN;
+import org.opends.server.types.DirectoryException;
import org.opends.server.types.Entry;
import org.opends.server.types.ErrorLogCategory;
import org.opends.server.types.ErrorLogSeverity;
+import org.opends.server.types.InitializationException;
import org.opends.server.types.LDIFImportConfig;
import org.opends.server.types.LDIFExportConfig;
import org.opends.server.types.RestoreConfig;
@@ -1046,9 +1046,9 @@
* @param modifyDNOperation The modify DN operation with which this action is
* associated. This may be <CODE>null</CODE> for
* modify DN operations performed internally.
- * @throws org.opends.server.core.DirectoryException
+ * @throws org.opends.server.types.DirectoryException
* If a problem occurs while trying to perform the rename.
- * @throws org.opends.server.core.CancelledOperationException
+ * @throws org.opends.server.types.CancelledOperationException
* If this backend noticed and reacted to a request to cancel or
* abandon the modify DN operation.
*/
@@ -1104,7 +1104,7 @@
* <CODE>SearchOperation.returnEntry</CODE> method.
*
* @param searchOperation The search operation to be processed.
- * @throws org.opends.server.core.DirectoryException
+ * @throws org.opends.server.types.DirectoryException
* If a problem occurs while processing the search.
*/
public void search(SearchOperation searchOperation)
@@ -1142,7 +1142,7 @@
* @param configEntry The configuration entry for this backend.
* @param baseDNs The set of base DNs configured for this backend.
* @param exportConfig The configuration to use when performing the export.
- * @throws org.opends.server.core.DirectoryException
+ * @throws org.opends.server.types.DirectoryException
* If a problem occurs while performing the LDIF export.
*/
public void exportLDIF(ConfigEntry configEntry, DN[] baseDNs,
--
Gitblit v1.10.0