CachekeyParamsAndValue.java
1.32 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
52
53
54
55
56
57
package com.yohoufo.common.cache;
import com.alibaba.fastjson.JSONObject;
/**
* Created by li.ma on 2019/3/6.
*/
public class CachekeyParamsAndValue {
private Object[] cacheKeyparams;
private Object value;
public void setCacheKeyparams(Object... cacheKeyparams) {
this.cacheKeyparams = cacheKeyparams;
}
public Object[] getCacheKeyparams() {
return cacheKeyparams;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
@Override
public String toString() {
return JSONObject.toJSONString(this);
}
public class Builder {
private Object[] cacheKeyparams;
private Object value;
public Builder setCacheKeyparams(Object... cacheKeyparams) {
this.cacheKeyparams = cacheKeyparams;
return this;
}
public Builder setValue(Object value) {
this.value = value;
return this;
}
public CachekeyParamsAndValue build() {
CachekeyParamsAndValue cachekeyParamsAndValue = new CachekeyParamsAndValue();
cachekeyParamsAndValue.setCacheKeyparams(this.cacheKeyparams);
cachekeyParamsAndValue.setValue(this.value);
return cachekeyParamsAndValue;
}
}
}