Remove akka-ssl-config (#26034)

This is now part of akka-stream directly
This commit is contained in:
Arnout Engelen 2018-12-04 09:47:58 +01:00 committed by Johan Andrén
parent 24c57269af
commit 2b2f9841b7
2 changed files with 0 additions and 27 deletions

View file

@ -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
}

View file

@ -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])
}