From b475afad809df9cb1a12aa737ee1a04a3db1be2b Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 23 Jun 2015 15:54:22 +0000
Subject: [PATCH] Renamed openMethod local variables to importCommand.
---
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ImportSuffixCommand.java | 22 +++++++++-------------
1 files changed, 9 insertions(+), 13 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ImportSuffixCommand.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ImportSuffixCommand.java
index eec702a..76f0519 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ImportSuffixCommand.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/ImportSuffixCommand.java
@@ -34,9 +34,10 @@
import org.opends.server.types.DirectoryException;
import org.opends.server.types.LDIFImportConfig;
- /** Command that describes how a suffix should be imported. Gives the strategy to use and the data to drive the
- * import operation of a single suffix.
- */
+ /**
+ * Command that describes how a suffix should be imported. Gives the strategy to use and the data to
+ * drive the import operation of a single suffix.
+ */
public class ImportSuffixCommand
{
/** Strategy for importing a suffix. */
@@ -46,22 +47,17 @@
* branches are needed, normally used for append or clear backend modes.
*/
APPEND_OR_REPLACE,
- /**
- * Do not create a {@link Suffix}.
- */
+ /** Do not create a {@link Suffix}. */
SKIP_SUFFIX,
- /**
- * Before creating a {@link Suffix}, clear the {@link EntryContainer} of the baseDN.
- */
+ /** Before creating a {@link Suffix}, clear the {@link EntryContainer} of the baseDN. */
CLEAR_SUFFIX,
- /**
- * Create a temporary {@link EntryContainer} to merge LDIF with original data.
- */
+ /** Create a temporary {@link EntryContainer} to merge LDIF with original data. */
MERGE_DB_WITH_LDIF,
/**
* Create a {@link Suffix} specifying include and exclude branches and optionally a source {@link EntryContainer}.
*/
- INCLUDE_EXCLUDE_BRANCHES};
+ INCLUDE_EXCLUDE_BRANCHES
+ }
private List<DN> includeBranches;
private List<DN> excludeBranches;
--
Gitblit v1.10.0