NIFI-1079 Replacing Name for NULL_VALUE_FOR_EMPTY_STRING as I had accidentally removed it.

Signed-off-by: Bryan Bende <bbende@apache.org>
This commit is contained in:
Jeremy Dyer 2015-10-30 14:15:59 -04:00 committed by Bryan Bende
parent aef0d8fe9b
commit eb389cf84c
1 changed files with 3 additions and 3 deletions

View File

@ -99,9 +99,9 @@ public class AttributesToJSON extends AbstractProcessor {
.build();
public static final PropertyDescriptor NULL_VALUE_FOR_EMPTY_STRING = new PropertyDescriptor.Builder()
.name(("If true a non existing or empty attribute will be NULL in the resulting JSON. If false an empty " +
"string will be placed in the JSON"))
.description("")
.name(("Null Value"))
.description("If true a non existing or empty attribute will be NULL in the resulting JSON. If false an empty " +
"string will be placed in the JSON")
.required(true)
.allowableValues("true", "false")
.defaultValue("false")