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

com.att.aft.dme2.cache.legacy.DefaultCacheEntryView Maven / Gradle / Ivy

The newest version!
package com.att.aft.dme2.cache.legacy;

import java.util.Map;

import com.att.aft.dme2.cache.domain.CacheElement;
import com.att.aft.dme2.cache.domain.CacheElement.Key;
import com.att.aft.dme2.cache.service.CacheEntryView;

public class DefaultCacheEntryView implements CacheEntryView {
	
	private Map cacheMap = null;
	
	public DefaultCacheEntryView(final Map cacheMap){
		this.cacheMap = cacheMap;
	}

	@Override
	public CacheElement getEntry(Key key) {
		return cacheMap.get(key);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy