Enum CouchbaseRemoteAnalyticsLink.EncryptionLevel
java.lang.Object
java.lang.Enum<CouchbaseRemoteAnalyticsLink.EncryptionLevel>
com.couchbase.client.java.manager.analytics.link.CouchbaseRemoteAnalyticsLink.EncryptionLevel
- All Implemented Interfaces:
Serializable
,Comparable<CouchbaseRemoteAnalyticsLink.EncryptionLevel>
- Enclosing class:
- CouchbaseRemoteAnalyticsLink
public static enum CouchbaseRemoteAnalyticsLink.EncryptionLevel
extends Enum<CouchbaseRemoteAnalyticsLink.EncryptionLevel>
Security options for remote Couchbase links.
-
Enum Constant Summary
-
Method Summary
-
Enum Constant Details
-
NONE
Connect to the remote Couchbase cluster using an unsecured channel. Send the password in plaintext. -
HALF
Connect to the remote Couchbase cluster using an unsecured channel. Send the password securely using SASL. -
FULL
Connect to the remote Couchbase cluster using a channel secured by TLS. If a password is used, it is sent over the secure channel.Requires specifying the certificate to trust.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
wireName
-