
org.yestech.cache.impl.ConcurrentHashMapCacheManager Maven / Gradle / Ivy
The newest version!
/*
* Copyright LGPL3
* YES Technology Association
* http://yestech.org
*
* http://www.opensource.org/licenses/lgpl-3.0.html
*/
/*
*
* Author: Artie Copeland
* Last Modified Date: $DateTime: $
*/
package org.yestech.cache.impl;
import java.util.concurrent.ConcurrentHashMap;
/**
* Cache Manager for Java {@link ConcurrentHashMap}
*
* @author Artie Copeland
* @version $Revision: $
*/
@SuppressWarnings("unchecked")
public class ConcurrentHashMapCacheManager extends ConcurrentMapCacheManager {
public ConcurrentHashMapCacheManager() {
super();
setCache(new ConcurrentHashMap());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy