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

io.holixon.axon.gateway.configuration.command.CommandDispatchStrategyProperties.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package io.holixon.axon.gateway.configuration.command

import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.boot.context.properties.ConstructorBinding

/**
 * Configuration properties to set the command dispatch strategy from the properties.
 */
@ConstructorBinding
@ConfigurationProperties("axon-gateway.command.dispatch-aware.strategy")
data class CommandDispatchStrategyProperties(
  val excludeCommandNames: Set = setOf(),
  val excludeCommandPackages: Set = setOf()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy