dev.bpmcrafters.processengineapi.adapter.c7.remote.springboot.C7RemoteAdapterProperties.kt Maven / Gradle / Ivy
The newest version!
package dev.bpmcrafters.processengineapi.adapter.c7.remote.springboot
import dev.bpmcrafters.processengineapi.adapter.c7.remote.springboot.C7RemoteAdapterProperties.Companion.DEFAULT_PREFIX
import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.boot.context.properties.NestedConfigurationProperty
import org.springframework.validation.annotation.Validated
@Validated
@ConfigurationProperties(prefix = DEFAULT_PREFIX)
class C7RemoteAdapterProperties(
/**
* Flag to enable or disable the entire C7 remote adapter.
*/
val enabled: Boolean = false,
/**
* Configuration for external service tasks.
*/
@NestedConfigurationProperty
val serviceTasks: ServiceTasks,
/**
* Configuration of user tasks.
*/
@NestedConfigurationProperty
val userTasks: UserTasks
) {
companion object {
const val DEFAULT_PREFIX = "dev.bpm-crafters.process-api.adapter.c7remote"
}
/**
* Configuration for user task handling.
*/
data class UserTasks(
/**
* Delivery strategy for user tasks.
*/
val deliveryStrategy: UserTaskDeliveryStrategy,
/**
* Fixed rate for scheduled user task delivery.
*/
val scheduleDeliveryFixedRateInSeconds: Long = 5L,
/**
* Should an initial pull be executed on startup.
*/
val executeInitialPullOnStartup: Boolean = true,
)
/**
* Configuration for external service task handling.
*/
data class ServiceTasks(
/**
* Default id of the worker used for the external task.
*/
val workerId: String,
/**
* Max count of external tasks to fetch. Defaults to 100.
*/
val maxTaskCount: Int = 100,
/**
* Time in seconds to lock external task. Default to 10.
*/
val lockTimeInSeconds: Long = 10L,
/**
* Retry timout in seconds.
*/
val retryTimeoutInSeconds: Long = 10L,
/**
* Fixed rate for scheduled user task delivery.
*/
val scheduleDeliveryFixedRateInSeconds: Long = 13L,
/**
* Delivery strategy for external service tasks.
*/
val deliveryStrategy: ExternalServiceTaskDeliveryStrategy,
/**
* Should an initial pull be executed on startup.
*/
val executeInitialPullOnStartup: Boolean = true,
/**
* Default initial number of retries.
*/
val retries: Int = 3
)
/**
* Strategy how the user tasks are delivered to subscriptions.
*/
enum class UserTaskDeliveryStrategy {
/**
* Delivery via scheduler.
*/
REMOTE_SCHEDULED,
/**
* Custom delivery.
*/
CUSTOM,
/**
* Disabled delivery
*/
DISABLED
}
/**
* Strategy how the external service tasks are delivered to subscriptions.
*/
enum class ExternalServiceTaskDeliveryStrategy {
/**
* Delivery via scheduler.
*/
REMOTE_SCHEDULED,
/**
* Delivery via subscription of the official external task client.
*/
REMOTE_SUBSCRIBED,
/**
* Custom delivery.
*/
CUSTOM,
/**
* Disabled delivery
*/
DISABLED
}
}