com.ing.baker.recipe.common.Sieve.scala Maven / Gradle / Ivy
The newest version!
package com.ing.baker.recipe.common
import com.ing.baker.recipe.common
trait Sieve {
/**
* name of the sieve interaction
*/
val name: String
/**
* input ingredients
*/
val inputIngredients: Seq[common.Ingredient]
/**
* output events
*/
val output: Seq[common.Event]
/**
* function
*/
val function: Any
/**
* javaTypes Java types of the input parameters of the function
*/
val javaTypes: Seq[java.lang.reflect.Type]
}