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 package info.magnolia.module.cache;
35
36 import info.magnolia.context.MgnlContext;
37
38
39
40
41
42
43
44
45
46 public class CachePolicyResult {
47 public static final CachePolicyBehaviour store = new CachePolicyBehaviour("store");
48 public static final CachePolicyBehaviour useCache = new CachePolicyBehaviour("useCache");
49 public static final CachePolicyBehaviour bypass = new CachePolicyBehaviour("bypass");
50
51 private final CachePolicyBehaviour behaviour;
52 private final Object cacheKey;
53 private Object cachedEntry;
54
55 public CachePolicyResult(CachePolicyBehaviour behaviour, Object cacheKey, Object cachedEntry) {
56 this.behaviour = behaviour;
57 this.cacheKey = cacheKey;
58 this.cachedEntry = cachedEntry;
59 }
60
61 public CachePolicyBehaviour getBehaviour() {
62 return behaviour;
63 }
64
65 public Object getCacheKey() {
66 return cacheKey;
67 }
68
69 public Object getCachedEntry() {
70 return cachedEntry;
71 }
72
73 public String toString() {
74 return "CachePolicyResult{" +
75 "behaviour=" + behaviour +
76 ", cacheKey=" + cacheKey +
77 ", cachedEntry=" + cachedEntry +
78 '}';
79 }
80
81
82
83
84 public final static class CachePolicyBehaviour {
85 private final String name;
86
87 private CachePolicyBehaviour(String name) {
88 this.name = name;
89 }
90
91 public String toString() {
92 return name;
93 }
94
95 public String getName() {
96 return name;
97 }
98 }
99
100 public void setCachedEntry(Object entry) {
101 cachedEntry = entry;
102 }
103
104
105
106
107 public static void setCurrent(CachePolicyResult cachePolicyResult) {
108 MgnlContext.setAttribute(CachePolicyResult.class.getName(), cachePolicyResult);
109 }
110
111
112
113
114 public static CachePolicyResult getCurrent(){
115 return (CachePolicyResult) MgnlContext.getAttribute(CachePolicyResult.class.getName());
116 }
117
118 }