Package com.typesafe.sslconfig.pekko
Class PekkoSSLConfig
- java.lang.Object
-
- com.typesafe.sslconfig.pekko.PekkoSSLConfig
-
-
Constructor Summary
Constructors Constructor Description PekkoSSLConfig(ExtendedActorSystem system, com.typesafe.sslconfig.ssl.SSLConfigSettings config)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static PekkoSSLConfig
apply(ActorSystem system)
Deprecated.javax.net.ssl.HostnameVerifier
buildHostnameVerifier(com.typesafe.sslconfig.ssl.SSLConfigSettings conf)
Deprecated.com.typesafe.sslconfig.ssl.KeyManagerFactoryWrapper
buildKeyManagerFactory(com.typesafe.sslconfig.ssl.SSLConfigSettings ssl)
Deprecated.com.typesafe.sslconfig.ssl.TrustManagerFactoryWrapper
buildTrustManagerFactory(com.typesafe.sslconfig.ssl.SSLConfigSettings ssl)
Deprecated.com.typesafe.sslconfig.ssl.SSLConfigSettings
config()
Deprecated.java.lang.String[]
configureCipherSuites(java.lang.String[] existingCiphers, com.typesafe.sslconfig.ssl.SSLConfigSettings sslConfig)
Deprecated.java.lang.String[]
configureProtocols(java.lang.String[] existingProtocols, com.typesafe.sslconfig.ssl.SSLConfigSettings sslConfig)
Deprecated.PekkoSSLConfig
convertSettings(java.util.function.Function<com.typesafe.sslconfig.ssl.SSLConfigSettings,com.typesafe.sslconfig.ssl.SSLConfigSettings> f)
Deprecated.Returns a newPekkoSSLConfig
instance with the settings changed by the given function.static PekkoSSLConfig
createExtension(ExtendedActorSystem system)
Deprecated.static com.typesafe.sslconfig.ssl.SSLConfigSettings
defaultSSLConfigSettings(ActorSystem system)
Deprecated.static boolean
equals(java.lang.Object other)
Deprecated.static PekkoSSLConfig
get(ActorSystem system)
Deprecated.static PekkoSSLConfig
get(ClassicActorSystemProvider system)
Deprecated.static int
hashCode()
Deprecated.javax.net.ssl.HostnameVerifier
hostnameVerifier()
Deprecated.static PekkoSSLConfig$
lookup()
Deprecated.PekkoSSLConfig
mapSettings(scala.Function1<com.typesafe.sslconfig.ssl.SSLConfigSettings,com.typesafe.sslconfig.ssl.SSLConfigSettings> f)
Deprecated.Returns a newPekkoSSLConfig
instance with the settings changed by the given function.DefaultSSLEngineConfigurator
sslEngineConfigurator()
Deprecated.boolean
useJvmHostnameVerification()
Deprecated.INTERNAL APIvoid
validateDefaultTrustManager(com.typesafe.sslconfig.ssl.SSLConfigSettings sslConfig)
Deprecated.validateDefaultTrustManager is not doing anything since akka 2.6.19 and should not be used.PekkoSSLConfig
withSettings(com.typesafe.sslconfig.ssl.SSLConfigSettings c)
Deprecated.Can be used to modify the underlying config, most typically used to change a few values in the default config
-
-
-
Constructor Detail
-
PekkoSSLConfig
public PekkoSSLConfig(ExtendedActorSystem system, com.typesafe.sslconfig.ssl.SSLConfigSettings config)
Deprecated.
-
-
Method Detail
-
get
public static PekkoSSLConfig get(ActorSystem system)
Deprecated.
-
get
public static PekkoSSLConfig get(ClassicActorSystemProvider system)
Deprecated.
-
apply
public static PekkoSSLConfig apply(ActorSystem system)
Deprecated.
-
lookup
public static PekkoSSLConfig$ lookup()
Deprecated.
-
createExtension
public static PekkoSSLConfig createExtension(ExtendedActorSystem system)
Deprecated.
-
defaultSSLConfigSettings
public static com.typesafe.sslconfig.ssl.SSLConfigSettings defaultSSLConfigSettings(ActorSystem system)
Deprecated.
-
hashCode
public static final int hashCode()
Deprecated.
-
equals
public static final boolean equals(java.lang.Object other)
Deprecated.
-
config
public com.typesafe.sslconfig.ssl.SSLConfigSettings config()
Deprecated.
-
withSettings
public PekkoSSLConfig withSettings(com.typesafe.sslconfig.ssl.SSLConfigSettings c)
Deprecated.Can be used to modify the underlying config, most typically used to change a few values in the default config
-
mapSettings
public PekkoSSLConfig mapSettings(scala.Function1<com.typesafe.sslconfig.ssl.SSLConfigSettings,com.typesafe.sslconfig.ssl.SSLConfigSettings> f)
Deprecated.Returns a newPekkoSSLConfig
instance with the settings changed by the given function. Please note that the ActorSystem-wide extension always remains configured via typesafe config, custom ones can be created for special-handling specific connections
-
convertSettings
public PekkoSSLConfig convertSettings(java.util.function.Function<com.typesafe.sslconfig.ssl.SSLConfigSettings,com.typesafe.sslconfig.ssl.SSLConfigSettings> f)
Deprecated.Returns a newPekkoSSLConfig
instance with the settings changed by the given function. Please note that the ActorSystem-wide extension always remains configured via typesafe config, custom ones can be created for special-handling specific connectionsJava API
-
hostnameVerifier
public javax.net.ssl.HostnameVerifier hostnameVerifier()
Deprecated.
-
useJvmHostnameVerification
public boolean useJvmHostnameVerification()
Deprecated.INTERNAL API
-
sslEngineConfigurator
public DefaultSSLEngineConfigurator sslEngineConfigurator()
Deprecated.
-
buildKeyManagerFactory
public com.typesafe.sslconfig.ssl.KeyManagerFactoryWrapper buildKeyManagerFactory(com.typesafe.sslconfig.ssl.SSLConfigSettings ssl)
Deprecated.
-
buildTrustManagerFactory
public com.typesafe.sslconfig.ssl.TrustManagerFactoryWrapper buildTrustManagerFactory(com.typesafe.sslconfig.ssl.SSLConfigSettings ssl)
Deprecated.
-
buildHostnameVerifier
public javax.net.ssl.HostnameVerifier buildHostnameVerifier(com.typesafe.sslconfig.ssl.SSLConfigSettings conf)
Deprecated.
-
validateDefaultTrustManager
public void validateDefaultTrustManager(com.typesafe.sslconfig.ssl.SSLConfigSettings sslConfig)
Deprecated.validateDefaultTrustManager is not doing anything since akka 2.6.19 and should not be used. Since Akka 2.6.19.
-
configureProtocols
public java.lang.String[] configureProtocols(java.lang.String[] existingProtocols, com.typesafe.sslconfig.ssl.SSLConfigSettings sslConfig)
Deprecated.
-
configureCipherSuites
public java.lang.String[] configureCipherSuites(java.lang.String[] existingCiphers, com.typesafe.sslconfig.ssl.SSLConfigSettings sslConfig)
Deprecated.
-
-