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

net.sixpointsix.springboot.datafixture.DataFixtureProperties Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package net.sixpointsix.springboot.datafixture;

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

@ConfigurationProperties(prefix = "6point6.data-fixture")
public class DataFixtureProperties {

    private boolean enabled;

    public boolean isEnabled() {
        return enabled;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy