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

br.gov.frameworkdemoiselle.internal.configuration.JDBCConfigurationStore Maven / Gradle / Ivy

There is a newer version: 2.5.4
Show newest version
package br.gov.frameworkdemoiselle.internal.configuration;

import java.io.Serializable;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;


public class JDBCConfigurationStore implements Cloneable, Serializable {
	
	private static final long serialVersionUID = 1L;
	
	private HashMap properties = new HashMap();

	public int size() {
		return properties.size();
	}

	public boolean isEmpty() {
		return properties.isEmpty();
	}

	public String get(Object key) {
		return properties.get(key);
	}

	public boolean equals(Object o) {
		return properties.equals(o);
	}

	public boolean containsKey(Object key) {
		return properties.containsKey(key);
	}

	public String put(String key, String value) {
		return properties.put(key, value);
	}

	public int hashCode() {
		return properties.hashCode();
	}

	public String toString() {
		return properties.toString();
	}

	public void putAll(Map m) {
		properties.putAll(m);
	}

	public String remove(Object key) {
		return properties.remove(key);
	}

	public void clear() {
		properties.clear();
	}

	public boolean containsValue(Object value) {
		return properties.containsValue(value);
	}

	public Object clone() {
		return properties.clone();
	}

	public Set keySet() {
		return properties.keySet();
	}

	public Collection values() {
		return properties.values();
	}

	public Set> entrySet() {
		return properties.entrySet();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy