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

net.n2oapp.properties.reader.PatternResourcePropertySource Maven / Gradle / Ivy

package net.n2oapp.properties.reader;

import org.springframework.core.env.PropertiesPropertySource;

/**
 * Search resources by pattern
 */
public class PatternResourcePropertySource extends PropertiesPropertySource {

    protected PatternResourcePropertySource(String name, String locationPattern) {
        super(name, PropertiesReader.getPropertiesFromURI(locationPattern));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy