dev.bpmcrafters.processengineapi.process.ProcessInformation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of process-engine-api Show documentation
Show all versions of process-engine-api Show documentation
Java API for engine-independent process functionality.
package dev.bpmcrafters.processengineapi.process
/**
* Information about the process instance.
* @since 0.0.1
*/
data class ProcessInformation(
/**
* Reference to the instance.
*/
val instanceId: String,
/**
* Additional metadata about started instance.
*/
val meta: Map
)