I want to make a factory for cache containers, something like
public interface CacheMapFactory {
public Map<K,V> createCacheMap(String tag, Class<K> kClass, Class<V> vClass);
}
with a possible simple implementation for testing
public class InMemoryCacheMapFactory implements CacheMapFactory {
public Map<K,V> createCacheMap(String tag, Class<K> kClass, Class<V> vClass) {
return new HashMap<K,V>();
}
}
Other implementations might be, for example, based on Memcached or some other key-value storage.
Is it possible to convert the pseudocode above into something compileable with the desired semantics?