mirror of https://github.com/apache/nifi.git
NIFI-553
This commit is contained in:
parent
c7c4427cbf
commit
aeefe73f0b
|
@ -49,7 +49,7 @@ import org.apache.nifi.util.StopWatch;
|
|||
@EventDriven
|
||||
@SideEffectFree
|
||||
@SupportsBatching
|
||||
@Tags({"experimental", "encode", "base64"})
|
||||
@Tags({"encode", "base64"})
|
||||
@CapabilityDescription("Encodes or decodes content to and from base64")
|
||||
public class Base64EncodeContent extends AbstractProcessor {
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ import org.apache.nifi.processor.util.StandardValidators;
|
|||
|
||||
@EventDriven
|
||||
@SupportsBatching
|
||||
@Tags({"experimental", "hash", "dupe", "duplicate", "dedupe"})
|
||||
@Tags({"hash", "dupe", "duplicate", "dedupe"})
|
||||
@CapabilityDescription("Caches a value, computed from FlowFile attributes, for each incoming FlowFile and determines if the cached value has already been seen. "
|
||||
+ "If so, routes the FlowFile to 'duplicate' with an attribute named 'original.identifier' that specifies the original FlowFile's"
|
||||
+ "\"description\", which is specified in the <FlowFile Description> property. If the FlowFile is not determined to be a duplicate, the Processor "
|
||||
|
|
|
@ -55,7 +55,7 @@ import org.apache.nifi.util.StopWatch;
|
|||
@EventDriven
|
||||
@SideEffectFree
|
||||
@SupportsBatching
|
||||
@Tags({"experimental", "encode", "decode", "base64", "hex"})
|
||||
@Tags({"encode", "decode", "base64", "hex"})
|
||||
@CapabilityDescription("Encodes the FlowFile content in base64")
|
||||
public class EncodeContent extends AbstractProcessor {
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ import org.xml.sax.InputSource;
|
|||
@EventDriven
|
||||
@SideEffectFree
|
||||
@SupportsBatching
|
||||
@Tags({"XML", "evaluate", "XPath", "XQuery", "experimental"})
|
||||
@Tags({"XML", "evaluate", "XPath", "XQuery"})
|
||||
@CapabilityDescription(
|
||||
"Evaluates one or more XQueries against the content of a FlowFile. The results of those XQueries are assigned "
|
||||
+ "to FlowFile Attributes or are written to the content of the FlowFile itself, depending on configuration of "
|
||||
|
|
Loading…
Reference in New Issue