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;