mirror of https://github.com/apache/nifi.git
NIFI-1197 fixed name/displayName on properties
This commit is contained in:
parent
d39f82b2c7
commit
b4e9b5f64a
|
@ -63,14 +63,16 @@ public abstract class AbstractMongoProcessor extends AbstractProcessor {
|
||||||
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
|
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
|
||||||
.build();
|
.build();
|
||||||
public static final PropertyDescriptor SSL_CONTEXT_SERVICE = new PropertyDescriptor.Builder()
|
public static final PropertyDescriptor SSL_CONTEXT_SERVICE = new PropertyDescriptor.Builder()
|
||||||
.name("SSL Context Service")
|
.name("ssl-context-service")
|
||||||
|
.displayName("SSL Context Service")
|
||||||
.description("The SSL Context Service used to provide client certificate information for TLS/SSL "
|
.description("The SSL Context Service used to provide client certificate information for TLS/SSL "
|
||||||
+ "connections.")
|
+ "connections.")
|
||||||
.required(false)
|
.required(false)
|
||||||
.identifiesControllerService(SSLContextService.class)
|
.identifiesControllerService(SSLContextService.class)
|
||||||
.build();
|
.build();
|
||||||
public static final PropertyDescriptor CLIENT_AUTH = new PropertyDescriptor.Builder()
|
public static final PropertyDescriptor CLIENT_AUTH = new PropertyDescriptor.Builder()
|
||||||
.name("Client Auth")
|
.name("ssl-client-auth")
|
||||||
|
.displayName("Client Auth")
|
||||||
.description("Client authentication policy when connecting to secure (TLS/SSL) cluster. "
|
.description("Client authentication policy when connecting to secure (TLS/SSL) cluster. "
|
||||||
+ "Possible values are REQUIRED, WANT, NONE. This property is only used when an SSL Context "
|
+ "Possible values are REQUIRED, WANT, NONE. This property is only used when an SSL Context "
|
||||||
+ "has been defined and enabled.")
|
+ "has been defined and enabled.")
|
||||||
|
|
Loading…
Reference in New Issue