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