public enum SecurityProperty extends Enum<SecurityProperty>
| Enum Constant and Description |
|---|
CLIENT_CERTIFICATE_KEY_STORE_PASSWORD
Added in MySQL 5.1.0
|
CLIENT_CERTIFICATE_KEY_STORE_TYPE
Added in MySQL 5.1.0 and defaults to JKS
|
CLIENT_CERTIFICATE_KEY_STORE_URL
Added in MySQL 5.1.0
|
ENABLED_TLS_PROTOCOLS
Deprecated alias for tlsVersions
|
REQUIRE_SSL
Deprecated in favor of sslMode and evaluated when useSSL is enabled
|
TRUST_CERTIFICATE_KEY_STORE_PASSWORD
Added in MySQL 5.1.0
|
TRUST_CERTIFICATE_KEY_STORE_TYPE
Added in MySQL 5.1.0 and defaults to JKS
|
TRUST_CERTIFICATE_KEY_STORE_URL
Added in MySQL 5.1.0
|
USE_SSL
Deprecated in favor of sslMode and defaults to true in 8.0.13 and later
|
VERIFY_SERVER_CERTIFICATE
Deprecated in favor of sslMode and defaults to false in 8.0.13 and later
|
| Modifier and Type | Method and Description |
|---|---|
String |
getProperty() |
static SecurityProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityProperty ENABLED_TLS_PROTOCOLS
public static final SecurityProperty TRUST_CERTIFICATE_KEY_STORE_URL
public static final SecurityProperty TRUST_CERTIFICATE_KEY_STORE_TYPE
public static final SecurityProperty TRUST_CERTIFICATE_KEY_STORE_PASSWORD
public static final SecurityProperty CLIENT_CERTIFICATE_KEY_STORE_URL
public static final SecurityProperty CLIENT_CERTIFICATE_KEY_STORE_TYPE
public static final SecurityProperty CLIENT_CERTIFICATE_KEY_STORE_PASSWORD
public static final SecurityProperty REQUIRE_SSL
public static final SecurityProperty USE_SSL
public static final SecurityProperty VERIFY_SERVER_CERTIFICATE
private final String property
public static SecurityProperty[] values()
for (SecurityProperty c : SecurityProperty.values()) System.out.println(c);
public static SecurityProperty valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getProperty()
Copyright © 2022 Apache NiFi Project. All rights reserved.