com.github.datalking.common.env.PropertiesPropertySource Maven / Gradle / Ivy
package com.github.datalking.common.env;
import java.util.Map;
import java.util.Properties;
/**
* @author yaoo on 5/28/18
*/
public class PropertiesPropertySource extends MapPropertySource {
public PropertiesPropertySource(String name, Properties source) {
super(name, (Map) source);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy