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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.yanzuoguang.token;
import com.yanzuoguang.util.contants.SystemContants;
import com.yanzuoguang.util.vo.MapRow;
/**
* Token创建数据
*
* @author 颜佐光
*/
public class TokenData {
/**
* token标记
*/
private String token;
/**
* 数据密钥
*/
private String dataPwd;
/**
* 有效时间
*/
private long expire = 0;
/**
* 缓存的数据
*/
private MapRow data = new MapRow();
/**
* 是否写入到数据库
*/
private boolean write = false;
public TokenData() {
this.expire = System.currentTimeMillis() + SystemContants.DAY_UNIT;
}
public TokenData(String token, String dataPwd, MapRow data, long expire) {
this.token = token;
this.dataPwd = dataPwd;
this.data = data;
this.expire = expire;
}
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public String getDataPwd() {
return dataPwd;
}
public void setDataPwd(String dataPwd) {
this.dataPwd = dataPwd;
}
public long getExpire() {
return expire;
}
public void setExpire(long expire) {
this.expire = expire;
}
public MapRow getData() {
return data;
}
public void setData(MapRow data) {
this.data = data;
}
public boolean isWrite() {
return write;
}
public void setWrite(boolean write) {
this.write = write;
}
}