dev.bpmcrafters.processengineapi.deploy.DeployBundleCommand.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.deploy
/**
* Command to deploy a bundle of resources.
* @since 0.0.1
*/
data class DeployBundleCommand(
/**
* Resources to deploy.
*/
val resources: List,
/**
* Optional tenant id.
*/
val tenantId: String? = null
)