Package org.infinispan.spring.provider

Examples of org.infinispan.spring.provider.SpringEmbeddedCacheManager


    }

    @Override
    public CacheManager getObject() throws Exception {
        if (this.cacheContainer instanceof EmbeddedCacheManager) {
            return new SpringEmbeddedCacheManager((EmbeddedCacheManager) this.cacheContainer);
        } else if (this.cacheContainer instanceof RemoteCacheManager) {
            return new SpringRemoteCacheManager((RemoteCacheManager) this.cacheContainer);
        } else {
            throw new IllegalArgumentException("CacheContainer must be either an EmbeddedCacheManager or a RemoteCacheManager ");
        }
View Full Code Here


    }

    @Override
    public CacheManager getObject() throws Exception {
        if (this.cacheContainer instanceof EmbeddedCacheManager) {
            return new SpringEmbeddedCacheManager((EmbeddedCacheManager) this.cacheContainer);
        } else if (this.cacheContainer instanceof RemoteCacheManager) {
            return new SpringRemoteCacheManager((RemoteCacheManager) this.cacheContainer);
        } else {
            throw new IllegalArgumentException("CacheContainer must be either an EmbeddedCacheManager or a RemoteCacheManager ");
        }
View Full Code Here

TOP

Related Classes of org.infinispan.spring.provider.SpringEmbeddedCacheManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.