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

This commit is contained in:
Costin Leau 2011-07-15 14:13:22 +00:00
parent fd42a65c6c
commit 4e1cb2b823
3 changed files with 3 additions and 3 deletions

View File

@ -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+

View File

@ -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;
/**

View File

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