Browse Source

move default value wrapper into support package (rather then interceptor)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4700 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/merge
Costin Leau 15 years ago
parent
commit
254d8bd80f
  1. 2
      org.springframework.context/src/main/java/org/springframework/cache/concurrent/ConcurrentMapCache.java
  2. 2
      org.springframework.context/src/main/java/org/springframework/cache/ehcache/EhCacheCache.java
  3. 2
      org.springframework.context/src/main/java/org/springframework/cache/support/DefaultValueWrapper.java

2
org.springframework.context/src/main/java/org/springframework/cache/concurrent/ConcurrentMapCache.java vendored

@ -22,7 +22,7 @@ import java.util.concurrent.ConcurrentHashMap; @@ -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+

2
org.springframework.context/src/main/java/org/springframework/cache/ehcache/EhCacheCache.java vendored

@ -21,7 +21,7 @@ import net.sf.ehcache.Element; @@ -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;
/**

2
org.springframework.context/src/main/java/org/springframework/cache/interceptor/DefaultValueWrapper.java → org.springframework.context/src/main/java/org/springframework/cache/support/DefaultValueWrapper.java vendored

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.cache.interceptor;
package org.springframework.cache.support;
import org.springframework.cache.Cache.ValueWrapper;
Loading…
Cancel
Save