com.ing.baker.recipe.common.CheckPointEvent.scala Maven / Gradle / Ivy
The newest version!
package com.ing.baker.recipe.common
trait CheckPointEvent {
/**
* name of the checkpoint event
*/
val name: String
/**
* A set of names of the events AND preconditions (events)
*/
val requiredEvents: Set[String]
/**
* A set of names of the events OR preconditions (events)
*/
val requiredOneOfEvents: Set[Set[String]]
}