From 5832f63b84d7388441d1200f2442dc1e9de0225c Mon Sep 17 00:00:00 2001 From: vlad Date: Tue, 27 Jun 2017 17:13:02 -0700 Subject: All PDS UI domain models, API case classes, service traits and necessary utils moved to pdsui-common --- .../pdsuidomain/formats/json/label/ApiLabel.scala | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/main/scala/xyz/driver/pdsuidomain/formats/json/label/ApiLabel.scala (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/label/ApiLabel.scala') diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/label/ApiLabel.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/label/ApiLabel.scala new file mode 100644 index 0000000..8c30f3a --- /dev/null +++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/label/ApiLabel.scala @@ -0,0 +1,22 @@ +package xyz.driver.pdsuidomain.formats.json.label + +import play.api.libs.functional.syntax._ +import play.api.libs.json.{Format, JsPath} +import xyz.driver.pdsuidomain.entities.Label + +final case class ApiLabel(id: Long, name: String, categoryId: Long) + +object ApiLabel { + + implicit val format: Format[ApiLabel] = ( + (JsPath \ "id").format[Long] and + (JsPath \ "name").format[String] and + (JsPath \ "categoryId").format[Long] + ) (ApiLabel.apply, unlift(ApiLabel.unapply)) + + def fromDomain(x: Label) = ApiLabel( + id = x.id.id, + name = x.name, + categoryId = x.categoryId.id + ) +} -- cgit v1.2.3