From 4e1cb2b823cd7df9d8c377815612744418690e55 Mon Sep 17 00:00:00 2001 From: Costin Leau Date: Fri, 15 Jul 2011 14:13:22 +0000 Subject: [PATCH] move default value wrapper into support package (rather then interceptor) --- .../springframework/cache/concurrent/ConcurrentMapCache.java | 2 +- .../java/org/springframework/cache/ehcache/EhCacheCache.java | 2 +- .../cache/{interceptor => support}/DefaultValueWrapper.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename org.springframework.context/src/main/java/org/springframework/cache/{interceptor => support}/DefaultValueWrapper.java (92%) diff --git a/org.springframework.context/src/main/java/org/springframework/cache/concurrent/ConcurrentMapCache.java b/org.springframework.context/src/main/java/org/springframework/cache/concurrent/ConcurrentMapCache.java index 12468e878f8..15e72162c64 100644 --- a/org.springframework.context/src/main/java/org/springframework/cache/concurrent/ConcurrentMapCache.java +++ b/org.springframework.context/src/main/java/org/springframework/cache/concurrent/ConcurrentMapCache.java @@ -22,7 +22,7 @@ import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import org.springframework.cache.Cache; -import org.springframework.cache.interceptor.DefaultValueWrapper; +import org.springframework.cache.support.DefaultValueWrapper; /** * Simple {@link Cache} implementation based on the JDK 1.5+ diff --git a/org.springframework.context/src/main/java/org/springframework/cache/ehcache/EhCacheCache.java b/org.springframework.context/src/main/java/org/springframework/cache/ehcache/EhCacheCache.java index e43fd543ee5..b6d7e476bdb 100644 --- a/org.springframework.context/src/main/java/org/springframework/cache/ehcache/EhCacheCache.java +++ b/org.springframework.context/src/main/java/org/springframework/cache/ehcache/EhCacheCache.java @@ -21,7 +21,7 @@ import net.sf.ehcache.Element; import net.sf.ehcache.Status; import org.springframework.cache.Cache; -import org.springframework.cache.interceptor.DefaultValueWrapper; +import org.springframework.cache.support.DefaultValueWrapper; import org.springframework.util.Assert; /** diff --git a/org.springframework.context/src/main/java/org/springframework/cache/interceptor/DefaultValueWrapper.java b/org.springframework.context/src/main/java/org/springframework/cache/support/DefaultValueWrapper.java similarity index 92% rename from org.springframework.context/src/main/java/org/springframework/cache/interceptor/DefaultValueWrapper.java rename to org.springframework.context/src/main/java/org/springframework/cache/support/DefaultValueWrapper.java index 31ec5a2c3f6..a1c2e967e00 100644 --- a/org.springframework.context/src/main/java/org/springframework/cache/interceptor/DefaultValueWrapper.java +++ b/org.springframework.context/src/main/java/org/springframework/cache/support/DefaultValueWrapper.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.springframework.cache.interceptor; +package org.springframework.cache.support; import org.springframework.cache.Cache.ValueWrapper;