public class SslConfigurationBuilder extends AbstractConfigurationChildBuilder implements Builder<SslConfiguration>
Modifier | Constructor and Description |
---|---|
protected |
SslConfigurationBuilder(ConfigurationBuilder builder) |
Modifier and Type | Method and Description |
---|---|
SslConfiguration |
create()
Create the configuration bean
|
SslConfigurationBuilder |
disable()
Disables the SSL support
|
SslConfigurationBuilder |
enable()
Enables the SSL support
|
SslConfigurationBuilder |
enabled(boolean enabled)
Enables or disables the SSL support
|
SslConfigurationBuilder |
keyStoreFileName(String keyStoreFileName)
Specifies the filename of a keystore to use to create the
SSLContext You also need to
specify a keyStorePassword(char[]) . |
SslConfigurationBuilder |
keyStorePassword(char[] keyStorePassword)
Specifies the password needed to open the keystore You also need to specify a
keyStoreFileName(String) Alternatively specify an array of
#keyManagers(KeyManager[]) |
SslConfigurationBuilder |
read(SslConfiguration template)
Reads the configuration from an already created configuration bean into this builder.
|
SslConfigurationBuilder |
sslContext(SSLContext sslContext) |
SslConfigurationBuilder |
trustStoreFileName(String trustStoreFileName)
Specifies the filename of a truststore to use to create the
SSLContext You also need
to specify a trustStorePassword(char[]) . |
SslConfigurationBuilder |
trustStorePassword(char[] trustStorePassword)
Specifies the password needed to open the truststore You also need to specify a
trustStoreFileName(String) Alternatively specify an array of
#trustManagers(TrustManager[]) |
void |
validate()
Validate the data in this builder before building the configuration bean
|
addServer, addServers, asyncExecutorFactory, balancingStrategy, balancingStrategy, build, classLoader, connectionPool, connectionTimeout, consistentHashImpl, consistentHashImpl, forceReturnValues, keySizeEstimate, marshaller, marshaller, marshaller, pingOnStartup, protocolVersion, socketTimeout, ssl, tcpNoDelay, transportFactory, transportFactory, valueSizeEstimate, withProperties
protected SslConfigurationBuilder(ConfigurationBuilder builder)
public SslConfigurationBuilder disable()
public SslConfigurationBuilder enable()
public SslConfigurationBuilder enabled(boolean enabled)
public SslConfigurationBuilder keyStoreFileName(String keyStoreFileName)
SSLContext
You also need to
specify a keyStorePassword(char[])
. Alternatively specify an array of
#keyManagers(KeyManager[])
public SslConfigurationBuilder keyStorePassword(char[] keyStorePassword)
keyStoreFileName(String)
Alternatively specify an array of
#keyManagers(KeyManager[])
public SslConfigurationBuilder sslContext(SSLContext sslContext)
public SslConfigurationBuilder trustStoreFileName(String trustStoreFileName)
SSLContext
You also need
to specify a trustStorePassword(char[])
. Alternatively specify an array of
#trustManagers(TrustManager[])
public SslConfigurationBuilder trustStorePassword(char[] trustStorePassword)
trustStoreFileName(String)
Alternatively specify an array of
#trustManagers(TrustManager[])
public void validate()
Builder
validate
in interface Builder<SslConfiguration>
public SslConfiguration create()
Builder
create
in interface Builder<SslConfiguration>
public SslConfigurationBuilder read(SslConfiguration template)
Builder
read
in interface Builder<SslConfiguration>
template
- the configuration from which to "clone" this config if needed.Copyright © 2014 JBoss, a division of Red Hat. All Rights Reserved.