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

net.sf.jsr107cache.CacheManager Maven / Gradle / Ivy

There is a newer version: 2.3.6
Show newest version
/*
 * INSERT COPYRIGHT HERE
 */

package net.sf.jsr107cache;

/**
 *
 * @author sosandstrom
 */
public class CacheManager {
    private static CacheManager _instance = null;
    public static CacheManager getInstance() {
        if (null == _instance) {
            _instance = new CacheManager();
        }
        return _instance;
    }
    
    public CacheFactory getCacheFactory() throws CacheException {
        throw new CacheException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy