From 97024e80c3bdb5ad19b0eb42137f6e32f5f725b2 Mon Sep 17 00:00:00 2001
From: mrossign <mrossign@localhost>
Date: Tue, 22 Sep 2009 12:35:52 +0000
Subject: [PATCH] Fix for issue 4239 setup on Windows 2008 set LDAP ds-cfg-listen-port to 389 

---
 opends/src/server/org/opends/server/api/plugin/DirectoryServerPlugin.java |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/api/plugin/DirectoryServerPlugin.java b/opends/src/server/org/opends/server/api/plugin/DirectoryServerPlugin.java
index 2f6653d..7c92f13 100644
--- a/opends/src/server/org/opends/server/api/plugin/DirectoryServerPlugin.java
+++ b/opends/src/server/org/opends/server/api/plugin/DirectoryServerPlugin.java
@@ -348,6 +348,22 @@
   }
 
   /**
+   * Starts an import session.
+   * Performs any necessary processing that should be done at the
+   * beginning of an LDIF import session based on the provided
+   * configuration.
+   *
+   * @param  importConfig  The configuration used for the LDIF import.
+   */
+  public void doLDIFImportBegin(LDIFImportConfig importConfig)
+  {
+    Message message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get(
+        String.valueOf(pluginDN),
+        PluginType.LDIF_IMPORT_BEGIN.getName());
+    throw new UnsupportedOperationException(message.toString());
+  }
+
+  /**
    * Performs any necessary processing that should be done during an
    * LDIF export operation immediately after determining that the
    * provided entry should be included in the export.

--
Gitblit v1.10.0