From 27ede8298aee9ed2b6f83863173ba2415189b4f6 Mon Sep 17 00:00:00 2001
From: abobrov <abobrov@localhost>
Date: Fri, 13 Feb 2009 17:03:19 +0000
Subject: [PATCH] - land NDB Backend implementation.

---
 opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendSearchOperation.java |   44 ++++++++++++++++++++++++++++----------------
 1 files changed, 28 insertions(+), 16 deletions(-)

diff --git a/opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendSearchOperation.java b/opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendSearchOperation.java
index 6c85d95..33e96a1 100644
--- a/opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendSearchOperation.java
+++ b/opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendSearchOperation.java
@@ -22,7 +22,7 @@
  * CDDL HEADER END
  *
  *
- *      Copyright 2008 Sun Microsystems, Inc.
+ *      Copyright 2008-2009 Sun Microsystems, Inc.
  */
 package org.opends.server.workflowelement.localbackend;
 
@@ -82,24 +82,36 @@
 
 
 
-  // The backend in which the search is to be performed.
-  private Backend backend;
+  /**
+   * The backend in which the search is to be performed.
+   */
+  protected Backend backend;
 
-  // Indicates whether we should actually process the search.  This should
-  // only be false if it's a persistent search with changesOnly=true.
-  private boolean processSearch;
+  /**
+   * Indicates whether we should actually process the search.  This should
+   * only be false if it's a persistent search with changesOnly=true.
+   */
+  protected boolean processSearch;
 
-  // The client connection for the search operation.
-  private ClientConnection clientConnection;
+  /**
+   * The client connection for the search operation.
+   */
+  protected ClientConnection clientConnection;
 
-  // The base DN for the search.
-  private DN baseDN;
+  /**
+   * The base DN for the search.
+   */
+  protected DN baseDN;
 
-  // The persistent search request, if applicable.
-  private PersistentSearch persistentSearch;
+  /**
+   * The persistent search request, if applicable.
+   */
+  protected PersistentSearch persistentSearch;
 
-  // The filter for the search.
-  private SearchFilter filter;
+  /**
+   * The filter for the search.
+   */
+  protected SearchFilter filter;
 
 
 
@@ -125,7 +137,7 @@
    * @throws CanceledOperationException
    *           if this operation should be cancelled
    */
-  void processLocalSearch(LocalBackendWorkflowElement wfe)
+  public void processLocalSearch(LocalBackendWorkflowElement wfe)
       throws CanceledOperationException
   {
     boolean executePostOpPlugins = false;
@@ -316,7 +328,7 @@
    * @throws  DirectoryException  If there is a problem with any of the request
    *                              controls.
    */
-  private void handleRequestControls()
+  protected void handleRequestControls()
           throws DirectoryException
   {
     List<Control> requestControls  = getRequestControls();

--
Gitblit v1.10.0