mirror of https://github.com/apache/nifi.git
NIFI-1191 Adding missing tags for ConvertAvroToJSON
This commit is contained in:
parent
69bce2c2db
commit
c541c82c35
|
@ -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 "
|
||||
|
|
Loading…
Reference in New Issue