From 1d5d1a6a4a0a58d6bb4803527dacb6641c027816 Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Tue, 28 Jan 2014 13:34:12 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1288 :    Migrate I18n and logging support to i18n framework and SLF4J

---
 opendj3-server-dev/src/server/org/opends/server/api/DebugLogPublisher.java |   50 --------------------------------------------------
 1 files changed, 0 insertions(+), 50 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/api/DebugLogPublisher.java b/opendj3-server-dev/src/server/org/opends/server/api/DebugLogPublisher.java
index c37d309..da1a4e7 100644
--- a/opendj3-server-dev/src/server/org/opends/server/api/DebugLogPublisher.java
+++ b/opendj3-server-dev/src/server/org/opends/server/api/DebugLogPublisher.java
@@ -31,11 +31,6 @@
 import java.util.Map;
 import java.util.TreeMap;
 
-import com.sleepycat.je.Database;
-import com.sleepycat.je.DatabaseEntry;
-import com.sleepycat.je.OperationStatus;
-import com.sleepycat.je.Transaction;
-
 import org.forgerock.i18n.LocalizableMessage;
 import org.opends.server.admin.std.server.DebugLogPublisherCfg;
 import org.opends.server.loggers.debug.TraceSettings;
@@ -376,49 +371,4 @@
                                    String msg,
                                    Throwable ex, StackTraceElement[] stackTrace);
 
-
-
-  /**
-   * Log an JE database access in a method.
-   * @param  settings        The current trace settings in effect.
-   * @param  signature       The method signature.
-   * @param  sourceLocation  The location of the method in the source.
-   * @param  status          The status of the JE operation.
-   * @param  database        The database handle.
-   * @param  txn             The transaction handle (may be
-   *                         {@code null}).
-   * @param  key             The key to dump.
-   * @param  data            The data to dump.
-   * @param  stackTrace      The stack trace at the time the access
-   *                         occurred or null if its not available.
-   */
-  public abstract void traceJEAccess(TraceSettings settings,
-                                     String signature,
-                                     String sourceLocation,
-                                     OperationStatus status,
-                                     Database database,
-                                     Transaction txn,
-                                     DatabaseEntry key,
-                                     DatabaseEntry data,
-                                     StackTraceElement[] stackTrace);
-
-
-
-  /**
-   * Log a protocol element in a method.
-   * @param  settings        The current trace settings in effect.
-   * @param  signature       The method signature.
-   * @param  sourceLocation  The location of the method in the source.
-   * @param  decodedForm     The string representation of the protocol
-   *                         element.
-   * @param  stackTrace      The stack trace at the time the protocol
-   *                         element is logged or null if its not
-   *                         available.
-   */
-  public abstract void traceProtocolElement(TraceSettings settings,
-                                            String signature,
-                                            String sourceLocation,
-                                            String decodedForm,
-                                            StackTraceElement[] stackTrace);
-
 }

--
Gitblit v1.10.0