Package org.apache.accumulo.core.client
Interface AccumuloClient.SslOptions<T>
- All Superinterfaces:
- AccumuloClient.ClientFactory<T>
- Enclosing interface:
- AccumuloClient
Build methods for SSL/TLS
- Since:
- 2.0.0
- 
Method SummaryModifier and TypeMethodDescriptionkeystore(CharSequence path) Build with SSL key storekeystore(CharSequence path, CharSequence password, CharSequence type) Build with SSL key storetruststore(CharSequence path) Build with SSL trust storetruststore(CharSequence path, CharSequence password, CharSequence type) Build with SSL trust storeuseJsse()Use JSSE system properties to configure SSLMethods inherited from interface org.apache.accumulo.core.client.AccumuloClient.ClientFactorybuild, withUncaughtExceptionHandler
- 
Method Details- 
truststoreBuild with SSL trust store- Parameters:
- path- Path to trust store
- Returns:
- this builder
 
- 
truststoreAccumuloClient.SslOptions<T> truststore(CharSequence path, CharSequence password, CharSequence type) Build with SSL trust store- Parameters:
- path- Path to trust store
- password- Password used to encrypt trust store
- type- Trust store type
- Returns:
- this builder
 
- 
keystoreBuild with SSL key store- Parameters:
- path- Path to SSL key store
- Returns:
- this builder
 
- 
keystoreBuild with SSL key store- Parameters:
- path- Path to keystore
- password- Password used to encrypt key store
- type- Key store type
- Returns:
- this builder
 
- 
useJsseAccumuloClient.SslOptions<T> useJsse()Use JSSE system properties to configure SSL- Returns:
- this builder
 
 
-