All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ee.bitweb.core.amqp.AmqpProperties Maven / Gradle / Ivy

The newest version!
package ee.bitweb.core.amqp;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import static ee.bitweb.core.amqp.AmqpProperties.PREFIX;

@Setter
@Getter
@Component
@ConfigurationProperties(prefix = PREFIX)
@ConditionalOnProperty(value = AmqpProperties.PREFIX + ".auto-configuration", havingValue = "true")
public class AmqpProperties {

    static final String PREFIX = "ee.bitweb.core.amqp";

    private Boolean autoConfiguration = false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy