move default value wrapper into support package (rather then interceptor)
This commit is contained in:
parent
fd42a65c6c
commit
4e1cb2b823
|
|
@ -22,7 +22,7 @@ import java.util.concurrent.ConcurrentHashMap;
|
||||||
import java.util.concurrent.ConcurrentMap;
|
import java.util.concurrent.ConcurrentMap;
|
||||||
|
|
||||||
import org.springframework.cache.Cache;
|
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+
|
* Simple {@link Cache} implementation based on the JDK 1.5+
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ import net.sf.ehcache.Element;
|
||||||
import net.sf.ehcache.Status;
|
import net.sf.ehcache.Status;
|
||||||
|
|
||||||
import org.springframework.cache.Cache;
|
import org.springframework.cache.Cache;
|
||||||
import org.springframework.cache.interceptor.DefaultValueWrapper;
|
import org.springframework.cache.support.DefaultValueWrapper;
|
||||||
import org.springframework.util.Assert;
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.cache.interceptor;
|
package org.springframework.cache.support;
|
||||||
|
|
||||||
import org.springframework.cache.Cache.ValueWrapper;
|
import org.springframework.cache.Cache.ValueWrapper;
|
||||||
|
|
||||||
Loading…
Reference in New Issue