
com.att.aft.dme2.cache.legacy.DefaultCacheEntryView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dme2-api Show documentation
Show all versions of dme2-api Show documentation
Direct Messaging Engine dme2-api
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