From 6879d04bd633e99ef7013bffafce2ef04adc3006 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 19 Sep 2014 14:55:35 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1206 : Create a new ReplicationBackend/ChangelogBackend to support cn=changelog
---
opendj3-server-dev/src/server/org/opends/server/api/ConfigHandler.java | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/api/ConfigHandler.java b/opendj3-server-dev/src/server/org/opends/server/api/ConfigHandler.java
index 07bb99f..be847c9 100644
--- a/opendj3-server-dev/src/server/org/opends/server/api/ConfigHandler.java
+++ b/opendj3-server-dev/src/server/org/opends/server/api/ConfigHandler.java
@@ -26,26 +26,25 @@
*/
package org.opends.server.api;
-
-
+import org.opends.server.admin.std.server.BackendCfg;
import org.opends.server.config.ConfigEntry;
import org.forgerock.opendj.config.server.ConfigException;
-import org.opends.server.types.DirectoryException;
import org.opends.server.types.DN;
+import org.opends.server.types.DirectoryException;
import org.opends.server.types.InitializationException;
-
/**
* This class defines the set of methods and structures that must be
* implemented by a Directory Server configuration handler.
+ *
+ * @param <C> the BackendCfg class in use with this ConfigHandler
*/
@org.opends.server.types.PublicAPI(
stability=org.opends.server.types.StabilityLevel.VOLATILE,
mayInstantiate=false,
mayExtend=true,
mayInvoke=true)
-public abstract class ConfigHandler
- extends Backend
+public abstract class ConfigHandler<C extends BackendCfg> extends Backend<C>
{
/**
* Bootstraps this configuration handler using the information in
--
Gitblit v1.10.0