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

de.otto.synapse.configuration.aws.CompactionProperties Maven / Gradle / Ivy

There is a newer version: 0.33.1
Show newest version
package de.otto.synapse.configuration.aws;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "synapse.compaction")
public class CompactionProperties {

    private boolean enabled = false;

    public boolean isEnabled() {
        return enabled;
    }

    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy