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

com.jpattern.service.cache.statistics.NullCacheStatisticsManager Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.jpattern.service.cache.statistics;

/**
 * 
 * @author Francesco Cina'
 *
 * 5 May 2011
 */
public class NullCacheStatisticsManager implements ICacheStatisticsManager {

	private static final long serialVersionUID = 1L;
	private ICacheStatistics cacheStatistics;

	@Override
	public ICacheStatistics getCacheStatistics(String cacheName) {
		if (cacheStatistics == null) {
			cacheStatistics = new NullCacheStatistics();
		}
		return cacheStatistics;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy