org.reactivecommons.async.rabbit.config.props.DomainProps 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 lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class DomainProps {
@NestedConfigurationProperty
@Builder.Default
private EventsProps events = new EventsProps();
@Builder.Default
private boolean ignoreThisListener = false;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy