public enum TruststoreStrategy extends Enum<TruststoreStrategy>
| Enum Constant and Description |
|---|
JDK
Use the JDK truststore.
|
NIFI
Use NiFi's truststore specified in nifi.properties.
|
| Modifier and Type | Method and Description |
|---|---|
static TruststoreStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TruststoreStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TruststoreStrategy JDK
public static final TruststoreStrategy NIFI
public static TruststoreStrategy[] values()
for (TruststoreStrategy c : TruststoreStrategy.values()) System.out.println(c);
public static TruststoreStrategy 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 nullCopyright © 2023 Apache NiFi Project. All rights reserved.