From a0877d81ca2844d75dc361b5ce7c99afacd6e25f Mon Sep 17 00:00:00 2001 From: vlad Date: Thu, 25 Jan 2018 14:12:31 -0800 Subject: Extracting query library --- .../pdsuidomain/formats/json/recordhistory.scala | 43 ---------------------- 1 file changed, 43 deletions(-) delete mode 100644 src/main/scala/xyz/driver/pdsuidomain/formats/json/recordhistory.scala (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/recordhistory.scala') diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/recordhistory.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/recordhistory.scala deleted file mode 100644 index be9dae9..0000000 --- a/src/main/scala/xyz/driver/pdsuidomain/formats/json/recordhistory.scala +++ /dev/null @@ -1,43 +0,0 @@ -package xyz.driver.pdsuidomain.formats.json - -import spray.json._ -import xyz.driver.core.json._ -import xyz.driver.pdsuidomain.entities._ - -object recordhistory { - import DefaultJsonProtocol._ - import MedicalRecordHistory._ - import common._ - - implicit val recordStateFormat = new EnumJsonFormat[State]( - "New" -> State.New, - "Clean" -> State.Clean, - "Organize" -> State.Organize, - "Review" -> State.Review, - "Done" -> State.Done, - "Flag" -> State.Flag, - "Archive" -> State.Archive - ) - - implicit val recordActionFormat = new EnumJsonFormat[Action]( - "Start" -> Action.Start, - "Submit" -> Action.Submit, - "Unassign" -> Action.Unassign, - "Resolve" -> Action.Resolve, - "Flag" -> Action.Flag, - "Archive" -> Action.Archive, - "SaveDuplicate" -> Action.SaveDuplicate, - "SaveReorder" -> Action.SaveReorder, - "SaveRotation" -> Action.SaveRotation, - "DeleteDuplicate" -> Action.DeleteDuplicate, - "DeleteReorder" -> Action.DeleteReorder, - "DeleteRotation" -> Action.DeleteRotation, - "CreateDocument" -> Action.CreateDocument, - "DeleteDocument" -> Action.DeleteDocument, - "CreateRecord" -> Action.CreateRecord, - "ReadRecord" -> Action.ReadRecord - ) - - implicit val recordHistoryFormat: RootJsonFormat[MedicalRecordHistory] = jsonFormat6(MedicalRecordHistory.apply) - -} -- cgit v1.2.3