Github user MikeThomsen commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2518#discussion_r178304323
--- Diff:
nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/src/main/java/org/apache/nifi/hbase/AbstractPutHBase.java
---
@@ -63,6 +64,17 @@
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
+ protected static final PropertyDescriptor DEFAULT_VISIBILITY_STRING =
new PropertyDescriptor.Builder()
+ .name("hbase-default-vis-string")
+ .displayName("Default Visibility String")
+ .description("When using visibility labels, any value set in
this field will be applied to all cells that are written unless " +
--- End diff --
That's a very good point.
---