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

com.labbol.LApplication Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
/**
 * 
 */
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