Package org.apache.accumulo.core.client
Enum ClientConfiguration.ClientProperty
- java.lang.Object
-
- java.lang.Enum<ClientConfiguration.ClientProperty>
-
- org.apache.accumulo.core.client.ClientConfiguration.ClientProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<ClientConfiguration.ClientProperty>
- Enclosing class:
- ClientConfiguration
public static enum ClientConfiguration.ClientProperty extends Enum<ClientConfiguration.ClientProperty>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDefaultValue()
String
getDescription()
String
getKey()
static ClientConfiguration.ClientProperty
getPropertyByKey(String key)
static ClientConfiguration.ClientProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static ClientConfiguration.ClientProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RPC_SSL_TRUSTSTORE_PATH
public static final ClientConfiguration.ClientProperty RPC_SSL_TRUSTSTORE_PATH
-
RPC_SSL_TRUSTSTORE_PASSWORD
public static final ClientConfiguration.ClientProperty RPC_SSL_TRUSTSTORE_PASSWORD
-
RPC_SSL_TRUSTSTORE_TYPE
public static final ClientConfiguration.ClientProperty RPC_SSL_TRUSTSTORE_TYPE
-
RPC_SSL_KEYSTORE_PATH
public static final ClientConfiguration.ClientProperty RPC_SSL_KEYSTORE_PATH
-
RPC_SSL_KEYSTORE_PASSWORD
public static final ClientConfiguration.ClientProperty RPC_SSL_KEYSTORE_PASSWORD
-
RPC_SSL_KEYSTORE_TYPE
public static final ClientConfiguration.ClientProperty RPC_SSL_KEYSTORE_TYPE
-
RPC_USE_JSSE
public static final ClientConfiguration.ClientProperty RPC_USE_JSSE
-
GENERAL_SECURITY_CREDENTIAL_PROVIDER_PATHS
public static final ClientConfiguration.ClientProperty GENERAL_SECURITY_CREDENTIAL_PROVIDER_PATHS
-
INSTANCE_RPC_SSL_CLIENT_AUTH
public static final ClientConfiguration.ClientProperty INSTANCE_RPC_SSL_CLIENT_AUTH
-
INSTANCE_RPC_SSL_ENABLED
public static final ClientConfiguration.ClientProperty INSTANCE_RPC_SSL_ENABLED
-
INSTANCE_ZK_HOST
public static final ClientConfiguration.ClientProperty INSTANCE_ZK_HOST
-
INSTANCE_ZK_TIMEOUT
public static final ClientConfiguration.ClientProperty INSTANCE_ZK_TIMEOUT
-
INSTANCE_NAME
public static final ClientConfiguration.ClientProperty INSTANCE_NAME
-
INSTANCE_ID
public static final ClientConfiguration.ClientProperty INSTANCE_ID
-
TRACE_SPAN_RECEIVERS
@Deprecated(since="2.1.0") public static final ClientConfiguration.ClientProperty TRACE_SPAN_RECEIVERS
Deprecated.
-
TRACE_SPAN_RECEIVER_PREFIX
@Deprecated(since="2.1.0") public static final ClientConfiguration.ClientProperty TRACE_SPAN_RECEIVER_PREFIX
Deprecated.
-
TRACE_ZK_PATH
@Deprecated(since="2.1.0") public static final ClientConfiguration.ClientProperty TRACE_ZK_PATH
Deprecated.
-
INSTANCE_RPC_SASL_ENABLED
public static final ClientConfiguration.ClientProperty INSTANCE_RPC_SASL_ENABLED
- Since:
- 1.7.0
-
RPC_SASL_QOP
public static final ClientConfiguration.ClientProperty RPC_SASL_QOP
- Since:
- 1.7.0
-
KERBEROS_SERVER_PRIMARY
public static final ClientConfiguration.ClientProperty KERBEROS_SERVER_PRIMARY
- Since:
- 1.7.0
-
-
Method Detail
-
values
public static ClientConfiguration.ClientProperty[] 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 (ClientConfiguration.ClientProperty c : ClientConfiguration.ClientProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientConfiguration.ClientProperty valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getKey
public String getKey()
-
getDefaultValue
public String getDefaultValue()
-
getDescription
public String getDescription()
-
getPropertyByKey
public static ClientConfiguration.ClientProperty getPropertyByKey(String key)
-
-