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

net.revenj.patterns.History.scala Maven / Gradle / Ivy

package net.revenj.patterns

import java.time.OffsetDateTime

trait History[T <: ObjectHistory] extends Identifiable {
  def snapshots: scala.collection.Seq[Snapshot[T]]
}

trait Snapshot[T <: ObjectHistory] extends Identifiable {
  def at: OffsetDateTime
  def action: String
  def value: T
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy