Class ServerSslConfigBuilder
- java.lang.Object
-
- io.servicetalk.transport.api.ServerSslConfigBuilder
-
public final class ServerSslConfigBuilder extends java.lang.ObjectDefault builder forServerSslConfigobjects.
-
-
Constructor Summary
Constructors Constructor Description ServerSslConfigBuilder(java.util.function.Supplier<java.io.InputStream> keyCertChainSupplier, java.util.function.Supplier<java.io.InputStream> keySupplier)Create a new instance from aInputStreamwhich providesX.509certificate chain inPEMformat and aPKCS#8private key inPEMformat.ServerSslConfigBuilder(java.util.function.Supplier<java.io.InputStream> keyCertChainSupplier, java.util.function.Supplier<java.io.InputStream> keySupplier, java.lang.String keyPassword)Create a new instance from aInputStreamwhich providesX.509certificate chain inPEMformat and aPKCS#8private key inPEMformat.ServerSslConfigBuilder(javax.net.ssl.KeyManagerFactory kmf)Create a new instance using theKeyManagerFactoryfor SSL/TLS handshakes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TalpnProtocols(java.lang.String... protocols)Set the TLS ALPN protocols.TalpnProtocols(java.util.List<java.lang.String> protocols)Set the TLS ALPN protocols.ServerSslConfigbuild()Build a newServerSslConfig.Tciphers(java.lang.String... ciphers)Set the cipher suites to enable, in the order of preference.Tciphers(java.util.List<java.lang.String> ciphers)Set the cipher suites to enable, in the order of preference.ServerSslConfigBuilderclientAuthMode(SslClientAuthMode clientAuthMode)Set theSslClientAuthModewhich determines how client authentication should be done.TkeyManager(java.util.function.Supplier<java.io.InputStream> keyCertChainSupplier, java.util.function.Supplier<java.io.InputStream> keySupplier)Set aInputStreamwhich providesX.509certificate chain inPEMformat and aPKCS#8private key inPEMformat.TkeyManager(java.util.function.Supplier<java.io.InputStream> keyCertChainSupplier, java.util.function.Supplier<java.io.InputStream> keySupplier, java.lang.String keyPassword)Set aInputStreamwhich providesX.509certificate chain inPEMformat and aPKCS#8private key inPEMformat protected by a password.TkeyManager(javax.net.ssl.KeyManagerFactory kmf)Set theKeyManagerFactoryto use for the SSL/TLS handshake.Tprovider(SslProvider provider)Get theSslProviderto use.TsessionCacheSize(long sessionCacheSize)Get the size of the cache used for storing SSL session objects.TsessionTimeout(long sessionTimeout)Get the timeout for the cached SSL session objects, in seconds.TsslProtocols(java.lang.String... protocols)Set the TLS protocols to enable, in the order of preference.TsslProtocols(java.util.List<java.lang.String> protocols)Set the TLS protocols to enable, in the order of preference.protected ServerSslConfigBuilderthisT()TtrustManager(java.util.function.Supplier<java.io.InputStream> trustCertChainSupplier)Set the trusted certificates for verifying the remote endpoint's certificate.TtrustManager(javax.net.ssl.TrustManagerFactory tmf)Set theTrustManagerFactoryused for verifying the remote endpoint's certificate.
-
-
-
Constructor Detail
-
ServerSslConfigBuilder
public ServerSslConfigBuilder(javax.net.ssl.KeyManagerFactory kmf)
Create a new instance using theKeyManagerFactoryfor SSL/TLS handshakes.- Parameters:
kmf- theKeyManagerFactoryto use for the SSL/TLS handshakes.
-
ServerSslConfigBuilder
public ServerSslConfigBuilder(java.util.function.Supplier<java.io.InputStream> keyCertChainSupplier, java.util.function.Supplier<java.io.InputStream> keySupplier)Create a new instance from aInputStreamwhich providesX.509certificate chain inPEMformat and aPKCS#8private key inPEMformat.- Parameters:
keyCertChainSupplier- theX.509certificate chain inPEMformat.Each invocation of the
Suppliershould provide an independent instance ofInputStreamand the caller is responsible for invokingInputStream.close().keySupplier- aInputStreamwhich provides aPKCS#8private key in PEM format associated with.Each invocation of the
Suppliershould provide an independent instance ofInputStreamand the caller is responsible for invokingInputStream.close().
-
ServerSslConfigBuilder
public ServerSslConfigBuilder(java.util.function.Supplier<java.io.InputStream> keyCertChainSupplier, java.util.function.Supplier<java.io.InputStream> keySupplier, @Nullable java.lang.String keyPassword)Create a new instance from aInputStreamwhich providesX.509certificate chain inPEMformat and aPKCS#8private key inPEMformat.- Parameters:
keyCertChainSupplier- theX.509certificate chain inPEMformat.Each invocation of the
Suppliershould provide an independent instance ofInputStreamand the caller is responsible for invokingInputStream.close().keySupplier- aInputStreamwhich provides aPKCS#8private key in PEM format associated with.Each invocation of the
Suppliershould provide an independent instance ofInputStreamand the caller is responsible for invokingInputStream.close().keyPassword- the password required to access the key material fromkeySupplier.
-
-
Method Detail
-
clientAuthMode
public ServerSslConfigBuilder clientAuthMode(SslClientAuthMode clientAuthMode)
Set theSslClientAuthModewhich determines how client authentication should be done.- Parameters:
clientAuthMode- theSslClientAuthModewhich determines how client authentication should be done.- Returns:
this.- See Also:
SSLParameters.getNeedClientAuth(),SSLParameters.getWantClientAuth()
-
build
public ServerSslConfig build()
Build a newServerSslConfig.- Returns:
- a new
ServerSslConfig.
-
thisT
protected ServerSslConfigBuilder thisT()
-
trustManager
public final T trustManager(javax.net.ssl.TrustManagerFactory tmf)
Set theTrustManagerFactoryused for verifying the remote endpoint's certificate.- Parameters:
tmf- theTrustManagerFactoryused for verifying the remote endpoint's certificate.- Returns:
this.
-
trustManager
public final T trustManager(java.util.function.Supplier<java.io.InputStream> trustCertChainSupplier)
Set the trusted certificates for verifying the remote endpoint's certificate. The input stream should contain anX.509certificate chain inPEMformat.- Parameters:
trustCertChainSupplier- the trusted certificates for verifying the remote endpoint's certificate. The input stream should contain anX.509certificate chain inPEMformat.Each invocation of the
Suppliershould provide an independent instance ofInputStreamand the caller is responsible for invokingInputStream.close().- Returns:
this.
-
keyManager
public final T keyManager(javax.net.ssl.KeyManagerFactory kmf)
Set theKeyManagerFactoryto use for the SSL/TLS handshake.- Parameters:
kmf- theKeyManagerFactoryto use for the SSL/TLS handshake.- Returns:
this.
-
keyManager
public final T keyManager(java.util.function.Supplier<java.io.InputStream> keyCertChainSupplier, java.util.function.Supplier<java.io.InputStream> keySupplier)Set aInputStreamwhich providesX.509certificate chain inPEMformat and aPKCS#8private key inPEMformat.- Parameters:
keyCertChainSupplier- theX.509certificate chain inPEMformat.Each invocation of the
Suppliershould provide an independent instance ofInputStreamand the caller is responsible for invokingInputStream.close().keySupplier- aInputStreamwhich provides aPKCS#8private key inPEMformat associated with.Each invocation of the
Suppliershould provide an independent instance ofInputStreamand the caller is responsible for invokingInputStream.close().- Returns:
this.
-
keyManager
public final T keyManager(java.util.function.Supplier<java.io.InputStream> keyCertChainSupplier, java.util.function.Supplier<java.io.InputStream> keySupplier, @Nullable java.lang.String keyPassword)Set aInputStreamwhich providesX.509certificate chain inPEMformat and aPKCS#8private key inPEMformat protected by a password.- Parameters:
keyCertChainSupplier- theX.509certificate chain inPEMformat.Each invocation of the
Suppliershould provide an independent instance ofInputStreamand the caller is responsible for invokingInputStream.close().keySupplier- aInputStreamwhich provides aPKCS#8private key inPEMformat associated with.Each invocation of the
Suppliershould provide an independent instance ofInputStreamand the caller is responsible for invokingInputStream.close().keyPassword- the password required to access the key material fromkeySupplier.- Returns:
this.
-
sslProtocols
public final T sslProtocols(java.util.List<java.lang.String> protocols)
Set the TLS protocols to enable, in the order of preference.- Parameters:
protocols- the TLS protocols to enable, in the order of preference.- Returns:
this.- See Also:
SSLEngine.setEnabledProtocols(String[])
-
sslProtocols
public final T sslProtocols(java.lang.String... protocols)
Set the TLS protocols to enable, in the order of preference.- Parameters:
protocols- the TLS protocols to enable, in the order of preference.- Returns:
this.- See Also:
SSLEngine.setEnabledProtocols(String[])
-
alpnProtocols
public final T alpnProtocols(java.util.List<java.lang.String> protocols)
Set the TLS ALPN protocols.Note that each ALPN protocol typically requires corresponding configuration at the protocol layer and as a result maybe inferred and overridden by the protocol layer.
- Parameters:
protocols- the TLS ALPN protocols.- Returns:
this.
-
alpnProtocols
public final T alpnProtocols(java.lang.String... protocols)
Set the TLS ALPN protocols.Note that each ALPN protocol typically requires corresponding configuration at the protocol layer and as a result maybe inferred and overridden by the protocol layer.
- Parameters:
protocols- the TLS ALPN protocols.- Returns:
this.
-
ciphers
public final T ciphers(java.util.List<java.lang.String> ciphers)
Set the cipher suites to enable, in the order of preference.- Parameters:
ciphers- the ciphers to use.- Returns:
this.
-
ciphers
public final T ciphers(java.lang.String... ciphers)
Set the cipher suites to enable, in the order of preference.- Parameters:
ciphers- the ciphers to use.- Returns:
this.
-
sessionCacheSize
public final T sessionCacheSize(long sessionCacheSize)
Get the size of the cache used for storing SSL session objects.- Parameters:
sessionCacheSize- the size of the cache used for storing SSL session objects.- Returns:
this.- See Also:
SSLSessionContext.setSessionCacheSize(int)
-
sessionTimeout
public final T sessionTimeout(long sessionTimeout)
Get the timeout for the cached SSL session objects, in seconds.- Parameters:
sessionTimeout- the timeout for the cached SSL session objects, in seconds.- Returns:
this.- See Also:
SSLSessionContext.setSessionTimeout(int)
-
provider
public final T provider(SslProvider provider)
Get theSslProviderto use.- Parameters:
provider- theSslProviderto use.- Returns:
this.
-
-