package gr.cite.notification.integrationevent.outbox; import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties(prefix = "queue.task.publisher.options") public class OutboxProperties { private final String exchange; public OutboxProperties(String exchange ) { this.exchange = exchange; } public String getExchange() { return exchange; } }