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

dev.bpmcrafters.processengineapi.correlation.Correlation.kt Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package dev.bpmcrafters.processengineapi.correlation

/**
 * Correlation information.
 * @since 0.0.1
 */
data class Correlation private constructor(
  /**
   * Correlation key.
   */
  val correlationKey: String,
  /**
   * If the engine is not supporting the correlation by key, defines the name of the local variable used to access correlation.
   */
  val correlationVariable: String = "correlationKey"
) {
  companion object {
    /**
     * Constructs correlation based on key, using default variable name.
     * @param key correlation key.
     * @return correlation
     */
    @JvmStatic
    fun withKey(key: String): Correlation {
      return Correlation(correlationKey = key)
    }
  }

  /**
   * Modifies the name for correlation variable.
   * @param variable name of the (local) variable used to correlate.
   * @return correlation.
   */
  fun withVariable(variable: String): Correlation {
    return this.copy(correlationVariable = variable)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy