!htp rename akka.http.routing package to akka.http.server

This commit is contained in:
Mathias 2014-09-17 16:42:31 +02:00
parent 1f32faeb96
commit 47affda004
43 changed files with 70 additions and 70 deletions

View file

@ -2,10 +2,10 @@
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.http.routing
package akka.http.server
import akka.http.model.HttpMethods._
import akka.http.routing.PathMatchers.{ Segment, IntNumber }
import akka.http.server.PathMatchers.{ Segment, IntNumber }
class BasicRouteSpecs extends RoutingSpec {

View file

@ -2,7 +2,7 @@
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.http.routing
package akka.http.server
import org.scalatest.{ WordSpec, Suite, Matchers }
import akka.http.model.HttpResponse

View file

@ -2,7 +2,7 @@
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.http.routing
package akka.http.server
import com.typesafe.config.{ ConfigFactory, Config }
import scala.concurrent.duration._

View file

@ -2,7 +2,7 @@
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.http.routing
package akka.http.server
package directives
class BasicDirectivesSpec extends RoutingSpec {

View file

@ -2,10 +2,10 @@
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.http.routing.directives
package akka.http.server.directives
import akka.http.model.{ StatusCodes, HttpMethods }
import akka.http.routing._
import akka.http.server._
class MethodDirectivesSpec extends RoutingSpec {

View file

@ -2,9 +2,9 @@
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.http.routing.directives
package akka.http.server.directives
import akka.http.routing._
import akka.http.server._
class PathDirectivesSpec extends RoutingSpec {
val echoUnmatchedPath = unmatchedPath { echoComplete }

View file

@ -2,13 +2,13 @@
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.http.routing.directives
package akka.http.server.directives
import org.scalatest.FreeSpec
import scala.concurrent.Promise
import akka.http.marshalling._
import akka.http.routing._
import akka.http.server._
import akka.http.model._
import akka.http.util._
import headers._