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

net.sf.esfinge.querybuilder.finder.Configurations Maven / Gradle / Ivy

Go to download

The Esfinge QueryBuilder JDBC is the persistence framework for Esfinge QueryBuilder using JDBC.

The newest version!
package net.sf.esfinge.querybuilder.finder;

import java.util.HashMap;

public class Configurations {
	private HashMap configurations;

	public Configurations() {
		configurations = new HashMap();
	}

	public void addEntry(String key, String value) {
		try {
			configurations.put(key, value);
		} catch (Exception err) {
		}
	}

	public String findValueByKey(String key) {
		if (configurations.containsKey(key)) {
			return configurations.get(key);
		}
		return "";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy