ca.gc.aafc.dina.messaging.config.RabbitMQProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dina-messaging Show documentation
Show all versions of dina-messaging Show documentation
Base DINA messaging classes based on RabbitMQ
package ca.gc.aafc.dina.messaging.config;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import org.springframework.validation.annotation.Validated;
/**
* Loaded from application.yml
*/
@ConfigurationProperties(prefix = "rabbitmq")
@Component
@Getter
@Setter
@Validated
public class RabbitMQProperties {
private String host;
private String username;
private String password;
private int port;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy