!htp rename akka.http.routing package to akka.http.server
This commit is contained in:
parent
1f32faeb96
commit
47affda004
43 changed files with 70 additions and 70 deletions
|
|
@ -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 {
|
||||
|
||||
|
|
@ -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
|
||||
|
|
@ -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._
|
||||
|
|
@ -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 {
|
||||
|
|
@ -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 {
|
||||
|
||||
|
|
@ -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 }
|
||||
|
|
@ -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._
|
||||
Loading…
Add table
Add a link
Reference in a new issue