aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/entities/DirectReport.scala
diff options
context:
space:
mode:
authorvlad <vlad@driver.xyz>2017-06-16 12:35:30 -0700
committervlad <vlad@driver.xyz>2017-06-16 12:35:30 -0700
commit6f9e7158e51e082f3fe5ba209cc178416056d24e (patch)
treed76d94ad6516897c3aaf9e27e9242e6dee5627a1 /src/main/scala/xyz/driver/pdsuidomain/entities/DirectReport.scala
parent1f0cb533633fc95df948a2617351335646f3e200 (diff)
downloadrest-query-6f9e7158e51e082f3fe5ba209cc178416056d24e.tar.gz
rest-query-6f9e7158e51e082f3fe5ba209cc178416056d24e.tar.bz2
rest-query-6f9e7158e51e082f3fe5ba209cc178416056d24e.zip
Label evidences with DIRECT reportsv0.1.7
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/entities/DirectReport.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/entities/DirectReport.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/entities/DirectReport.scala b/src/main/scala/xyz/driver/pdsuidomain/entities/DirectReport.scala
index b5714b6..c09a1d8 100644
--- a/src/main/scala/xyz/driver/pdsuidomain/entities/DirectReport.scala
+++ b/src/main/scala/xyz/driver/pdsuidomain/entities/DirectReport.scala
@@ -16,11 +16,11 @@ object DirectReport {
}
object ReportType {
- case object IHC extends ReportType
- case object DNA extends ReportType
+ case object IHC extends ReportType
+ case object DNA extends ReportType
case object CFDNA extends ReportType
- val All = Set(IHC, DNA, CFDNA)
+ val All = Set(IHC, DNA, CFDNA)
implicit def toPhiString(x: ReportType): PhiString = Unsafe(Utils.getClassSimpleName(x.getClass))
}