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

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

Go to download

A library used at otto.de to implement Spring Boot based event-sourcing microserivces.

There is a newer version: 0.10.1
Show newest version
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;
        }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy