!htt #19514 Update RouterSettings to be non case class

This commit is contained in:
Johan Andrén 2016-01-25 14:03:04 +01:00
parent 379a3a85b4
commit 61b375cec8
26 changed files with 188 additions and 64 deletions

View file

@ -5,6 +5,7 @@
package akka.http.impl.server
import akka.http.javadsl.model.ContentType
import akka.http.javadsl.settings.{ RoutingSettings, ParserSettings }
import akka.http.scaladsl.model.HttpEntity
import akka.stream.Materializer
import scala.concurrent.{ ExecutionContextExecutor, Future }
@ -52,4 +53,7 @@ private[http] final case class RequestContextImpl(underlying: ScalaRequestContex
def executionContext(): ExecutionContextExecutor = underlying.executionContext
def materializer(): Materializer = underlying.materializer
override def settings: RoutingSettings = underlying.settings
override def parserSettings: ParserSettings = underlying.parserSettings
}