
com.labbol.LApplication Maven / Gradle / Ivy
/**
*
*/
package com.labbol;
import java.util.HashMap;
import java.util.Map;
/**
* @author 14308
*
*/
public final class LApplication {
private static final Map PROPERTIES = new HashMap();
public static final String getProperty(String key) {
return PROPERTIES.get(key);
}
public static final String getProperty(String key,String defaultValue) {
return PROPERTIES.getOrDefault(key, defaultValue);
}
public static final void setProperty(String key , String value) {
PROPERTIES.put(key, value);
}
public static final Map getProperties(){
return PROPERTIES;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy