public static enum ImportSuffixCommand.SuffixImportStrategy extends Enum<ImportSuffixCommand.SuffixImportStrategy>
| Enum Constant and Description |
|---|
APPEND_OR_REPLACE
Create a
Suffix specifying just the EntryContainer for the baseDN, no include or exclude
branches are needed, normally used for append or clear backend modes. |
CLEAR_SUFFIX
Before creating a
Suffix, clear the EntryContainer of the baseDN. |
INCLUDE_EXCLUDE_BRANCHES
Create a
Suffix specifying include and exclude branches and optionally a source EntryContainer. |
MERGE_DB_WITH_LDIF
Create a temporary
EntryContainer to merge LDIF with original data. |
SKIP_SUFFIX
Do not create a
Suffix. |
| Modifier and Type | Method and Description |
|---|---|
static ImportSuffixCommand.SuffixImportStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportSuffixCommand.SuffixImportStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportSuffixCommand.SuffixImportStrategy APPEND_OR_REPLACE
Suffix specifying just the EntryContainer for the baseDN, no include or exclude
branches are needed, normally used for append or clear backend modes.public static final ImportSuffixCommand.SuffixImportStrategy SKIP_SUFFIX
Suffix.public static final ImportSuffixCommand.SuffixImportStrategy CLEAR_SUFFIX
Suffix, clear the EntryContainer of the baseDN.public static final ImportSuffixCommand.SuffixImportStrategy MERGE_DB_WITH_LDIF
EntryContainer to merge LDIF with original data.public static final ImportSuffixCommand.SuffixImportStrategy INCLUDE_EXCLUDE_BRANCHES
Suffix specifying include and exclude branches and optionally a source EntryContainer.public static ImportSuffixCommand.SuffixImportStrategy[] values()
for (ImportSuffixCommand.SuffixImportStrategy c : ImportSuffixCommand.SuffixImportStrategy.values()) System.out.println(c);
public static ImportSuffixCommand.SuffixImportStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2010-2015 ForgeRock AS. All Rights Reserved.