Adjusting error where the return type of string was omitted from the possible selections

This commit is contained in:
Aldrin Piri 2015-02-16 18:34:23 -05:00
parent 7e581307b7
commit 5b145e10e8
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public class EvaluateJsonPath extends AbstractProcessor {
.name("Return Type")
.description("Indicates the desired return type of the JSON Path expressions. Selecting 'auto-detect' will set the return type to 'json' for a Destination of 'flowfile-content', and 'string' for a Destination of 'flowfile-attribute'.")
.required(true)
.allowableValues(RETURN_TYPE_AUTO, RETURN_TYPE_AUTO, RETURN_TYPE_STRING)
.allowableValues(RETURN_TYPE_AUTO, RETURN_TYPE_JSON, RETURN_TYPE_STRING)
.defaultValue(RETURN_TYPE_AUTO)
.build();