de.otto.synapse.configuration.aws.SnapshotProperties 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.snapshot")
public class SnapshotProperties {
private String bucketName = null;
public String getBucketName() {
return bucketName;
}
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
}