summaryrefslogtreecommitdiff
path: root/src/main/scala/cc/spray/json/DefaultJsonProtocol.scala
diff options
context:
space:
mode:
authorMathias <mathias@spray.cc>2011-05-09 09:57:13 +0200
committerMathias <mathias@spray.cc>2011-05-09 09:57:13 +0200
commit7146a4af52a888f0cdf1a806cf640ef243e82a6c (patch)
treec0f41d242f2053674bfe2f6f0b005b8a2b2f0897 /src/main/scala/cc/spray/json/DefaultJsonProtocol.scala
parentb9b9ae1bc56362695217bb2a8850586700c0315a (diff)
downloadspray-json-7146a4af52a888f0cdf1a806cf640ef243e82a6c.tar.gz
spray-json-7146a4af52a888f0cdf1a806cf640ef243e82a6c.tar.bz2
spray-json-7146a4af52a888f0cdf1a806cf640ef243e82a6c.zip
Squash sub package 'formats'
Diffstat (limited to 'src/main/scala/cc/spray/json/DefaultJsonProtocol.scala')
-rw-r--r--src/main/scala/cc/spray/json/DefaultJsonProtocol.scala25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/scala/cc/spray/json/DefaultJsonProtocol.scala b/src/main/scala/cc/spray/json/DefaultJsonProtocol.scala
new file mode 100644
index 0000000..a8201c2
--- /dev/null
+++ b/src/main/scala/cc/spray/json/DefaultJsonProtocol.scala
@@ -0,0 +1,25 @@
+/*
+ * Original implementation (C) 2009-2011 Debasish Ghosh
+ * Adapted and extended in 2011 by Mathias Doenitz
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package cc.spray.json
+
+/**
+ * Provides all the predefined JsonFormats.
+ */
+trait DefaultJsonProtocol extends BasicFormats with StandardFormats with CollectionFormats with GenericFormats
+
+object DefaultJsonProtocol extends DefaultJsonProtocol