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

org.sakaiproject.profile2.cache.CacheManagerImpl Maven / Gradle / Ivy

package org.sakaiproject.profile2.cache;

import lombok.Setter;

import org.sakaiproject.memory.api.Cache;
import org.sakaiproject.memory.api.MemoryService;

/**
 * Implementation of CacheManager for Profile2.
 * 
 * @author Steve Swinsburg ([email protected])
 *
 */
public class CacheManagerImpl implements CacheManager {

	/**
 	* {@inheritDoc}
 	*/
	public Cache createCache(String cacheName) {
		return memoryService.newCache(cacheName);
	}

	@Setter
	private MemoryService memoryService;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy