From ad41085e4ca8a32e29d443591069ec4e94e65067 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 02 Oct 2015 15:34:44 +0000
Subject: [PATCH] AutoRefactor'ed the pluggable and PDB backend
---
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/SuffixContainer.java | 11 ++---------
1 files changed, 2 insertions(+), 9 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/SuffixContainer.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/SuffixContainer.java
index 10fd358..a8be8f7 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/SuffixContainer.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/SuffixContainer.java
@@ -36,11 +36,7 @@
*/
public interface SuffixContainer extends Closeable
{
-
- /**
- * The name of the index associating normalized DNs to ids. LDAP DNs uniquely
- * identify entries.
- */
+ /** The name of the index associating normalized DNs to ids. LDAP DNs uniquely identify entries. */
String DN2ID_INDEX_NAME = "dn2id";
/** The name of the index associating normalized DNs to URIs. */
String DN2URI_INDEX_NAME = "dn2uri";
@@ -55,10 +51,7 @@
* its children, i.e. its immediate children.
*/
String ID2CHILDREN_INDEX_NAME = "id2children";
- /**
- * The name of the index associating an entry id to the number of immediate
- * children below it.
- */
+ /** The name of the index associating an entry id to the number of immediate children below it. */
String ID2CHILDREN_COUNT_NAME = "id2childrencount";
/**
* The name of the index associating an entry id to the entry id set of all
--
Gitblit v1.10.0