Class

com.ing.baker.scala_api

InteractionDescriptorImpl

Related Doc: package scala_api

Permalink

case class InteractionDescriptorImpl[T <: Interaction](interactionClass: Class[T], requiredEvents: Set[Class[_]] = Set.empty, requiredOneOfEvents: Set[Class[_]] = Set.empty, predefinedIngredients: Map[String, AnyRef] = Map.empty, overriddenIngredientNames: Map[String, String] = Map.empty, overriddenOutputIngredientName: String = null, maximumInteractionCount: Option[Int] = None, failureStrategy: Option[InteractionFailureStrategy] = None, actionType: ActionType = ActionType.InteractionAction)(implicit evidence$1: ClassTag[T]) extends InteractionDescriptor[T] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, InteractionDescriptor[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InteractionDescriptorImpl
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. InteractionDescriptor
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InteractionDescriptorImpl(interactionClass: Class[T], requiredEvents: Set[Class[_]] = Set.empty, requiredOneOfEvents: Set[Class[_]] = Set.empty, predefinedIngredients: Map[String, AnyRef] = Map.empty, overriddenIngredientNames: Map[String, String] = Map.empty, overriddenOutputIngredientName: String = null, maximumInteractionCount: Option[Int] = None, failureStrategy: Option[InteractionFailureStrategy] = None, actionType: ActionType = ActionType.InteractionAction)(implicit arg0: ClassTag[T])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val actionType: ActionType

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. val eventOutputTransformers: Map[Class[_], EventOutputTransformer[_, _]]

    Permalink
    Definition Classes
    InteractionDescriptor
  9. val failureStrategy: Option[InteractionFailureStrategy]

    Permalink

    An optional strategy how to deal with failures.

    An optional strategy how to deal with failures. Falls back to the default strategy specified in the recipe.

    Definition Classes
    InteractionDescriptorImplInteractionDescriptor
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. val interactionClass: Class[T]

    Permalink

    The class on which the interaction method is defined.

    The class on which the interaction method is defined.

    Definition Classes
    InteractionDescriptorImplInteractionDescriptor
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. val maximumInteractionCount: Option[Int]

    Permalink

    Indicates the maximum number of times the interaction may be called.

    Indicates the maximum number of times the interaction may be called.

    Definition Classes
    InteractionDescriptorImplInteractionDescriptor
  15. val methodName: String

    Permalink

    The name of the method.

    The name of the method.

    Definition Classes
    InteractionDescriptor
  16. val name: String

    Permalink

    The name of the interaction

    The name of the interaction

    Definition Classes
    InteractionDescriptor
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. val overriddenIngredientNames: Map[String, String]

    Permalink

    A map of overridden Ingredient Names for the input

    A map of overridden Ingredient Names for the input

    Definition Classes
    InteractionDescriptorImplInteractionDescriptor
  21. val overriddenOutputIngredientName: String

    Permalink

    This is used to overwrite the name used for the output ingredient

    This is used to overwrite the name used for the output ingredient

    Definition Classes
    InteractionDescriptorImplInteractionDescriptor
  22. val predefinedIngredients: Map[String, AnyRef]

    Permalink

    A map of predefined parameter values, not provided from the recipe.

    A map of predefined parameter values, not provided from the recipe.

    Definition Classes
    InteractionDescriptorImplInteractionDescriptor
  23. val requiredEvents: Set[Class[_]]

    Permalink

    A set of AND preconditions (events)

    A set of AND preconditions (events)

    Definition Classes
    InteractionDescriptorImplInteractionDescriptor
  24. val requiredOneOfEvents: Set[Class[_]]

    Permalink

    A set of OR preconditions (events)

    A set of OR preconditions (events)

    Definition Classes
    InteractionDescriptorImplInteractionDescriptor
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def withIncrementalBackoffOnFailure(initialDelay: Duration, backoffFactor: Double = 2.0, maximumRetries: Int = 50): InteractionDescriptorImpl[T]

    Permalink
  30. def withMaximumInteractionCount(n: Int): InteractionDescriptorImpl[T]

    Permalink
  31. def withOverriddenIngredientName(oldIngredient: String, newIngredient: String): InteractionDescriptorImpl[T]

    Permalink
  32. def withOverriddenOutputIngredientName(newIngredientOutputName: String): InteractionDescriptorImpl[T]

    Permalink
  33. def withPredefinedIngredients(data: Map[String, AnyRef]): InteractionDescriptorImpl[T]

    Permalink
  34. def withPredefinedIngredients(values: (String, AnyRef)*): InteractionDescriptorImpl[T]

    Permalink
  35. def withRequiredEvent[C](implicit arg0: ClassTag[C]): InteractionDescriptorImpl[T]

    Permalink
  36. def withRequiredOneOfEvents(requiredOneOfEvents: Class[_]*): InteractionDescriptorImpl[T]

    Permalink

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from InteractionDescriptor[T]

Inherited from AnyRef

Inherited from Any

Ungrouped