public final class TagResult extends Object
Modifier and Type | Field and Description |
---|---|
static TagResult |
OMIT_FROM_ENTRY
A tag result that indicates the value should not be included in the entry, but all other processing should
continue.
|
static TagResult |
STOP_PROCESSING
A tag result in which all components have a value of
false . |
static TagResult |
SUCCESS_RESULT
A tag result in which all components have a value of
true . |
Modifier and Type | Method and Description |
---|---|
boolean |
keepProcessingEntry()
Indicates whether to continue processing for the current entry.
|
boolean |
keepProcessingLine()
Indicates whether to continue processing for the current line.
|
boolean |
keepProcessingParent()
Indicates whether to continue processing entries below the current parent.
|
boolean |
keepProcessingTemplateFile()
Indicates whether to keep processing entries for the template file.
|
public static final TagResult SUCCESS_RESULT
true
.public static final TagResult OMIT_FROM_ENTRY
public static final TagResult STOP_PROCESSING
false
.public boolean keepProcessingLine()
false
, then the current
line will not be included in the entry. It will have no impact on whether the entry itself is included in the
generated LDIF.true
if the line should be included in the entry, or false
if not.public boolean keepProcessingEntry()
false
, then the current
entry will not be included in the generated LDIF, and processing will resume with the next entry below the
current parent.true
if the entry should be included in the generated LDIF, or false
if not.public boolean keepProcessingParent()
false
, then
the current entry will not be included, and processing will resume below the next parent in the template file.true
if processing for the current parent should continue, or false
if not.public boolean keepProcessingTemplateFile()
false
, then LDIF
processing will end immediately (and the current entry will not be included).true
if processing for the template file should continue, or false
if not.Copyright 2010-2020 ForgeRock AS.