Github user alopresto commented on a diff in the pull request:
https://github.com/apache/nifi/pull/776#discussion_r73367459
--- Diff:
nifi-nar-bundles/nifi-standard-services/nifi-ssl-context-bundle/nifi-ssl-context-service/src/main/java/org/apache/nifi/ssl/StandardSSLContextService.java
---
@@ -96,6 +97,14 @@
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.sensitive(true)
.build();
+ static final PropertyDescriptor KEY_PASSWORD = new
PropertyDescriptor.Builder()
+ .name("Key Password")
+ .description("The password for the key. If this is not
specified, but the Keystore Filename, Password, and Type are specified, "
--- End diff --
Please change this to use the `displayName` field as well.
Example:
```
static final PropertyDescriptor KEY_PASSWORD = new
PropertyDescriptor.Builder()
.name("key-password")
.displayName("Key Password")
...
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---