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

org.webpieces.frontend2.impl.StreamSessionImpl Maven / Gradle / Ivy

package org.webpieces.frontend2.impl;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import org.webpieces.frontend2.api.StreamSession;

public class StreamSessionImpl implements StreamSession {

	private Map map = new ConcurrentHashMap();
	
	public Object get(Object key) {
		return map.get(key);
	}
	
	public void put(Object key, Object value) {
		map.put(key, value);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy