Package org.apache.cassandra.config
Enum EncryptionOptions.ConfigKey
- java.lang.Object
-
- java.lang.Enum<EncryptionOptions.ConfigKey>
-
- org.apache.cassandra.config.EncryptionOptions.ConfigKey
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EncryptionOptions.ConfigKey>
- Enclosing class:
- EncryptionOptions
public static enum EncryptionOptions.ConfigKey extends java.lang.Enum<EncryptionOptions.ConfigKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTED_PROTOCOLS
ALGORITHM
CIPHER_SUITES
ENABLED
KEYSTORE
KEYSTORE_PASSWORD
OPTIONAL
OUTBOUND_KEYSTORE
OUTBOUND_KEYSTORE_PASSWORD
PROTOCOL
REQUIRE_CLIENT_AUTH
REQUIRE_ENDPOINT_VERIFICATION
STORE_TYPE
TRUSTSTORE
TRUSTSTORE_PASSWORD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EncryptionOptions.ConfigKey
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EncryptionOptions.ConfigKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KEYSTORE
public static final EncryptionOptions.ConfigKey KEYSTORE
-
KEYSTORE_PASSWORD
public static final EncryptionOptions.ConfigKey KEYSTORE_PASSWORD
-
OUTBOUND_KEYSTORE
public static final EncryptionOptions.ConfigKey OUTBOUND_KEYSTORE
-
OUTBOUND_KEYSTORE_PASSWORD
public static final EncryptionOptions.ConfigKey OUTBOUND_KEYSTORE_PASSWORD
-
TRUSTSTORE
public static final EncryptionOptions.ConfigKey TRUSTSTORE
-
TRUSTSTORE_PASSWORD
public static final EncryptionOptions.ConfigKey TRUSTSTORE_PASSWORD
-
CIPHER_SUITES
public static final EncryptionOptions.ConfigKey CIPHER_SUITES
-
PROTOCOL
public static final EncryptionOptions.ConfigKey PROTOCOL
-
ACCEPTED_PROTOCOLS
public static final EncryptionOptions.ConfigKey ACCEPTED_PROTOCOLS
-
ALGORITHM
public static final EncryptionOptions.ConfigKey ALGORITHM
-
STORE_TYPE
public static final EncryptionOptions.ConfigKey STORE_TYPE
-
REQUIRE_CLIENT_AUTH
public static final EncryptionOptions.ConfigKey REQUIRE_CLIENT_AUTH
-
REQUIRE_ENDPOINT_VERIFICATION
public static final EncryptionOptions.ConfigKey REQUIRE_ENDPOINT_VERIFICATION
-
ENABLED
public static final EncryptionOptions.ConfigKey ENABLED
-
OPTIONAL
public static final EncryptionOptions.ConfigKey OPTIONAL
-
-
Method Detail
-
values
public static EncryptionOptions.ConfigKey[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EncryptionOptions.ConfigKey c : EncryptionOptions.ConfigKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EncryptionOptions.ConfigKey valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-