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

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