MikeThomsen commented on a change in pull request #4572:
URL: https://github.com/apache/nifi/pull/4572#discussion_r500664063



##########
File path: 
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UnpackContent.java
##########
@@ -145,6 +150,15 @@
             .addValidator(StandardValidators.REGULAR_EXPRESSION_VALIDATOR)
             .build();
 
+    public static final PropertyDescriptor PASSWORD = new 
PropertyDescriptor.Builder()
+            .name("Password")
+            .displayName("Password")
+            .description("Password used for decrypting archive entries. 
Supports Zip files encrypted with ZipCrypto or AES")
+            .required(false)
+            .sensitive(true)
+            .addValidator(StandardValidators.NON_BLANK_VALIDATOR)

Review comment:
       @alopresto read through your notes, and they make sense on the EL.
   
   One thing we see with government customers in a number of cases is a small 
shop will have little to no IT budget and will just transfer data in a 
password-protected zip file. Sometimes it'll be pushed to SFTP. In those cases 
where the password is not reused, can you think of any good way we could adapt 
this sort of change to work with that?




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to