org.apache.accumulo.core.client
Enum ClientConfiguration.ClientProperty

java.lang.Object
  extended by java.lang.Enum<ClientConfiguration.ClientProperty>
      extended by 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
GENERAL_SECURITY_CREDENTIAL_PROVIDER_PATHS
           
INSTANCE_ID
           
INSTANCE_NAME
           
INSTANCE_RPC_SSL_CLIENT_AUTH
           
INSTANCE_RPC_SSL_ENABLED
           
INSTANCE_ZK_HOST
           
INSTANCE_ZK_TIMEOUT
           
RPC_SSL_KEYSTORE_PASSWORD
           
RPC_SSL_KEYSTORE_PATH
           
RPC_SSL_KEYSTORE_TYPE
           
RPC_SSL_TRUSTSTORE_PASSWORD
           
RPC_SSL_TRUSTSTORE_PATH
           
RPC_SSL_TRUSTSTORE_TYPE
           
RPC_USE_JSSE
           
 
Method Summary
 Property getAccumuloProperty()
           
 String getDefaultValue()
           
 String getDescription()
           
 String getKey()
           
static ClientConfiguration.ClientProperty getPropertyByKey(String key)
           
 PropertyType getType()
           
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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
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 name
NullPointerException - if the argument is null

getKey

public String getKey()

getDefaultValue

public String getDefaultValue()

getType

public PropertyType getType()

getDescription

public String getDescription()

getAccumuloProperty

public Property getAccumuloProperty()

getPropertyByKey

public static ClientConfiguration.ClientProperty getPropertyByKey(String key)


Copyright © 2015 Apache Accumulo Project. All rights reserved.