org.reactivecommons.async.kafka.config.props.AsyncKafkaPropsDomainProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async-kafka-starter Show documentation
Show all versions of async-kafka-starter Show documentation
Abstract your broker with semantic async messages
package org.reactivecommons.async.kafka.config.props;
import org.reactivecommons.async.kafka.config.KafkaProperties;
import org.reactivecommons.async.starter.GenericAsyncPropsDomainProperties;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.Map;
@ConfigurationProperties(prefix = "reactive.commons.kafka")
public class AsyncKafkaPropsDomainProperties extends GenericAsyncPropsDomainProperties {
public AsyncKafkaPropsDomainProperties(Map extends String, ? extends AsyncKafkaProps> m) {
super(m);
}
public AsyncKafkaPropsDomainProperties() {
}
public static AsyncPropsDomainPropertiesBuilder builder() {
return GenericAsyncPropsDomainProperties.builder(AsyncKafkaPropsDomainProperties.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy