de.otto.synapse.configuration.aws.CompactionProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of synapse-aws Show documentation
Show all versions of synapse-aws Show documentation
A library used at otto.de to implement Spring Boot based event-sourcing microserivces.
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;
}
}