NoCacheCachingPolicy$.java
1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.scene7.is.sleng.CacheAction
* com.scene7.is.sleng.CacheEnum
*/
package com.scene7.is.ps.provider.util;
import com.scene7.is.ps.provider.util.CachingPolicy;
import com.scene7.is.sleng.CacheAction;
import com.scene7.is.sleng.CacheEnum;
public final class NoCacheCachingPolicy$
implements CachingPolicy {
public static final NoCacheCachingPolicy$ MODULE$;
public static {
new com.scene7.is.ps.provider.util.NoCacheCachingPolicy$();
}
@Override
public CacheEnum getCacheSetting() {
return CacheEnum.OFF;
}
@Override
public CacheAction getCacheMissAction() {
return CacheAction.IGNORE;
}
@Override
public CacheAction getCacheHitAction(long cacheTimeStamp) {
return CacheAction.IGNORE;
}
@Override
public long getValidationTime() {
return 0;
}
@Override
public boolean cacheEnabled() {
return false;
}
private NoCacheCachingPolicy$() {
MODULE$ = this;
}
}