All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.udash.rest.openapi.WhenAbsentInfo.scala Maven / Gradle / Ivy

There is a newer version: 0.13.0
Show newest version
package io.udash
package rest.openapi

import com.avsystem.commons._
import com.avsystem.commons.meta.{TypedMetadata, infer, reifyAnnot}
import com.avsystem.commons.rpc.AsRaw
import com.avsystem.commons.serialization.whenAbsent
import io.udash.rest.raw.JsonValue

import scala.util.Try

final case class WhenAbsentInfo[T](
  @reifyAnnot annot: whenAbsent[T],
  @infer("for @whenAbsent value: ") asJson: AsRaw[JsonValue, T]
) extends TypedMetadata[T] {
  val fallbackValue: Opt[JsonValue] =
    Try(annot.value).fold(_ => Opt.Empty, v => asJson.asRaw(v).opt)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy