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

be.tomcools.rickrollsecurity.RickRollConfigurationProperties Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package be.tomcools.rickrollsecurity;

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

import java.util.ArrayList;
import java.util.List;

@Configuration
@ConfigurationProperties(prefix = "rickroll")
public class RickRollConfigurationProperties {
    private List paths;

    public List getPaths() {
        if(paths == null) {
            return new ArrayList<>();
        }
        return paths;
    }

    public void setPaths(List paths) {
        this.paths = paths;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy