Remove akka-ssl-config (#26034)
This is now part of akka-stream directly
This commit is contained in:
parent
24c57269af
commit
2b2f9841b7
2 changed files with 0 additions and 27 deletions
|
|
@ -1,15 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (C) 2016-2018 Lightbend Inc. <https://www.lightbend.com>
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.lightbend.sslconfig.akka
|
|
||||||
|
|
||||||
import javax.net.ssl.{ SSLContext, SSLEngine }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gives the chance to configure the SSLContext before it is going to be used.
|
|
||||||
* The passed in context will be already set in client mode and provided with hostInfo during initialization.
|
|
||||||
*/
|
|
||||||
trait SSLEngineConfigurator {
|
|
||||||
def configure(engine: SSLEngine, sslContext: SSLContext): SSLEngine
|
|
||||||
}
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (C) 2016-2018 Lightbend Inc. <https://www.lightbend.com>
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.lightbend.sslconfig.akka.util
|
|
||||||
|
|
||||||
/** INTERNAL API */
|
|
||||||
final class AkkaLoggerFactory(system: ActorSystem) extends LoggerFactory {
|
|
||||||
override def apply(clazz: Class[_]): NoDepsLogger = new AkkaLoggerBridge(system.eventStream, clazz)
|
|
||||||
|
|
||||||
override def apply(name: String): NoDepsLogger = new AkkaLoggerBridge(system.eventStream, name, classOf[DummyClassForStringSources])
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue