NIFI-1191 Adding missing tags for ConvertAvroToJSON
Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/c541c82c Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/c541c82c Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/c541c82c Branch: refs/heads/NIFI-655 Commit: c541c82c354a53774743f380e23898cbddd4d203 Parents: 69bce2c Author: Aldrin Piri <[email protected]> Authored: Wed Nov 18 16:38:15 2015 -0500 Committer: Aldrin Piri <[email protected]> Committed: Wed Nov 18 16:38:15 2015 -0500 ---------------------------------------------------------------------- .../java/org/apache/nifi/processors/avro/ConvertAvroToJSON.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/c541c82c/nifi-nar-bundles/nifi-avro-bundle/nifi-avro-processors/src/main/java/org/apache/nifi/processors/avro/ConvertAvroToJSON.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-avro-bundle/nifi-avro-processors/src/main/java/org/apache/nifi/processors/avro/ConvertAvroToJSON.java b/nifi-nar-bundles/nifi-avro-bundle/nifi-avro-processors/src/main/java/org/apache/nifi/processors/avro/ConvertAvroToJSON.java index ec5c320..8faaa4f 100644 --- a/nifi-nar-bundles/nifi-avro-bundle/nifi-avro-processors/src/main/java/org/apache/nifi/processors/avro/ConvertAvroToJSON.java +++ b/nifi-nar-bundles/nifi-avro-bundle/nifi-avro-processors/src/main/java/org/apache/nifi/processors/avro/ConvertAvroToJSON.java @@ -38,6 +38,7 @@ import org.apache.nifi.annotation.behavior.SideEffectFree; import org.apache.nifi.annotation.behavior.SupportsBatching; import org.apache.nifi.annotation.behavior.WritesAttribute; import org.apache.nifi.annotation.documentation.CapabilityDescription; +import org.apache.nifi.annotation.documentation.Tags; import org.apache.nifi.components.PropertyDescriptor; import org.apache.nifi.flowfile.FlowFile; import org.apache.nifi.flowfile.attributes.CoreAttributes; @@ -51,6 +52,7 @@ import org.apache.nifi.processor.io.StreamCallback; @SideEffectFree @SupportsBatching +@Tags({"avro", "convert", "json"}) @InputRequirement(Requirement.INPUT_REQUIRED) @CapabilityDescription("Converts a Binary Avro record into a JSON object. This processor provides a direct mapping of an Avro field to a JSON field, such " + "that the resulting JSON will have the same hierarchical structure as the Avro document. Note that the Avro schema information will be lost, as this "
