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

com.sippnex.fileblade.FilebladeConfig Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.sippnex.fileblade;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ConfigurationProperties(prefix = "fileblade")
@ComponentScan(basePackages = {"com.sippnex.fileblade", "com.sippnex.fileblade.controller"})
public class FilebladeConfig {

    private String root;

    public String getRoot() {
        return root;
    }

    public void setRoot(String root) {
        this.root = root;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy