/** * JBoss, Home of Professional Open Source * Copyright 2009 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a full listing of * individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * ~ * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.spring.provider; import org.springframework.cache.Cache; import org.springframework.cache.support.SimpleValueWrapper; import org.springframework.util.Assert; /** * <p> * A {@link org.springframework.cache.Cache <code>Cache</code>} implementation that delegates to a * {@link org.infinispan.Cache <code>org.infinispan.Cache</code>} instance supplied at construction * time. * </p> * * @author <a href="mailto:olaf DOT bergner AT gmx DOT de">Olaf Bergner</a> * @author <a href="mailto:marius.bogoevici@gmail.com">Marius Bogoevici</a> * */ public class SpringCache implements Cache { private final org.infinispan.api.BasicCache<Object, Object> nativeCache; /** * @param nativeCache */ public SpringCache(final org.infinispan.api.BasicCache<Object, Object> nativeCache) { Assert.notNull(nativeCache, "A non-null Infinispan cache implementation is required"); this.nativeCache = nativeCache; } /** * @see org.springframework.cache.Cache#getName() */ @Override public String getName() { return this.nativeCache.getName(); } /** * @see org.springframework.cache.Cache#getNativeCache() */ @Override public org.infinispan.api.BasicCache<?, ?> getNativeCache() { return this.nativeCache; } /** * @see org.springframework.cache.Cache#get(java.lang.Object) */ @Override public ValueWrapper get(final Object key) { Object v = nativeCache.get(key); return (v != null ? new SimpleValueWrapper(v) : null); } /** * @see org.springframework.cache.Cache#put(java.lang.Object, java.lang.Object) */ @Override public void put(final Object key, final Object value) { this.nativeCache.put(key, value); } /** * @see org.springframework.cache.Cache#evict(java.lang.Object) */ @Override public void evict(final Object key) { this.nativeCache.remove(key); } /** * @see org.springframework.cache.Cache#clear() */ @Override public void clear() { this.nativeCache.clear(); } /** * @see java.lang.Object#toString() */ @Override public String toString() { return "InfinispanCache [nativeCache = " + this.nativeCache + "]"; } }