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

org.infinispan.spring.remote.provider.ContainerRemoteCacheManagerFactoryBean Maven / Gradle / Ivy

There is a newer version: 14.0.33.Final
Show newest version
package org.infinispan.spring.remote.provider;

import org.infinispan.client.hotrod.RemoteCacheManager;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.cache.CacheManager;
import org.springframework.util.Assert;

/**
 * {@link FactoryBean} for creating a {@link CacheManager} for a pre-defined {@link org.infinispan.manager.CacheContainer}.
 * 

* Useful when the cache container is defined outside the application (e.g. provided by the application server) * * @author Marius Bogoevici */ public class ContainerRemoteCacheManagerFactoryBean implements FactoryBean { private RemoteCacheManager cacheContainer; public ContainerRemoteCacheManagerFactoryBean(RemoteCacheManager cacheContainer) { Assert.notNull(cacheContainer, "CacheContainer cannot be null"); this.cacheContainer = cacheContainer; } @Override public CacheManager getObject() throws Exception { return new SpringRemoteCacheManager((RemoteCacheManager) this.cacheContainer); } @Override public Class getObjectType() { return CacheManager.class; } @Override public boolean isSingleton() { return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy