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

com.ing.baker.recipe.common.Interaction.scala Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package com.ing.baker.recipe.common

trait Interaction {
  val name: String
  val inputIngredients: Seq[Ingredient]
  val output: InteractionOutput

  override def equals(obj: scala.Any): Boolean = obj match {
    case other: Interaction =>
      this.name == other.name && this.inputIngredients == other.inputIngredients && this.output == other.output
    case _ => false
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy