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

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]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy