io.holunda.camunda.datapool.DataEntrySenderProperties.kt Maven / Gradle / Ivy
package io.holunda.camunda.datapool
import org.springframework.boot.context.properties.ConfigurationProperties
@ConfigurationProperties(prefix = "camunda.taskpool.dataentry.sender")
data class DataEntrySenderProperties(
var enabled: Boolean = false,
var type: DataEntrySenderType = DataEntrySenderType.simple
)
enum class DataEntrySenderType {
simple,
custom
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy