From e433824f46514e6ed863eb6b95c70038331c8c24 Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Tue, 24 Nov 2015 12:49:54 +0000
Subject: [PATCH] OPENDJ-2260 OPENDJ-2271 Integration of common audit into the server
---
opendj-server-legacy/src/main/java/org/opends/server/api/ConnectionHandler.java | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/api/ConnectionHandler.java b/opendj-server-legacy/src/main/java/org/opends/server/api/ConnectionHandler.java
index ad3ce9f..6a6036b 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/api/ConnectionHandler.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/api/ConnectionHandler.java
@@ -27,13 +27,16 @@
package org.opends.server.api;
import static org.opends.messages.ProtocolMessages.*;
+
import org.forgerock.i18n.slf4j.LocalizedLogger;
+
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import org.forgerock.i18n.LocalizableMessage;
import org.opends.server.admin.std.server.ConnectionHandlerCfg;
+import org.opends.server.core.ServerContext;
import org.forgerock.opendj.config.server.ConfigException;
import org.opends.server.monitors.ConnectionHandlerMonitor;
import org.opends.server.types.DN;
@@ -191,6 +194,8 @@
* Initializes this connection handler provider based on the
* information in the provided connection handler configuration.
*
+ * @param serverContext
+ * The server context.
* @param configuration
* The connection handler configuration that contains the
* information to use to initialize this connection
@@ -203,7 +208,7 @@
* If a problem occurs during initialization that is not
* related to the server configuration.
*/
- public abstract void initializeConnectionHandler(T configuration)
+ public abstract void initializeConnectionHandler(ServerContext serverContext, T configuration)
throws ConfigException, InitializationException;
--
Gitblit v1.10.0