File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/org/apache/ibatis/annotations Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 21
21
import java .lang .annotation .RetentionPolicy ;
22
22
import java .lang .annotation .Target ;
23
23
24
+ import org .apache .ibatis .cache .Cache ;
24
25
import org .apache .ibatis .cache .decorators .LruCache ;
25
26
import org .apache .ibatis .cache .impl .PerpetualCache ;
26
27
32
33
@ Retention (RetentionPolicy .RUNTIME )
33
34
@ Target (ElementType .TYPE )
34
35
public @interface CacheNamespace {
35
- Class <? extends org . apache . ibatis . cache . Cache > implementation () default PerpetualCache .class ;
36
+ Class <? extends Cache > implementation () default PerpetualCache .class ;
36
37
37
- Class <? extends org . apache . ibatis . cache . Cache > eviction () default LruCache .class ;
38
+ Class <? extends Cache > eviction () default LruCache .class ;
38
39
39
40
long flushInterval () default 0 ;
40
41
You can’t perform that action at this time.
0 commit comments