-
Notifications
You must be signed in to change notification settings - Fork 0
/
AuthTokenInfo.java
47 lines (43 loc) · 1.16 KB
/
AuthTokenInfo.java
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
package com.websystique.springmvc.model;
public class AuthTokenInfo {
private String access_token;
private String token_type;
private String refresh_token;
private int expires_in;
private String scope;
public String getAccess_token() {
return access_token;
}
public void setAccess_token(String access_token) {
this.access_token = access_token;
}
public String getToken_type() {
return token_type;
}
public void setToken_type(String token_type) {
this.token_type = token_type;
}
public String getRefresh_token() {
return refresh_token;
}
public void setRefresh_token(String refresh_token) {
this.refresh_token = refresh_token;
}
public int getExpires_in() {
return expires_in;
}
public void setExpires_in(int expires_in) {
this.expires_in = expires_in;
}
public String getScope() {
return scope;
}
public void setScope(String scope) {
this.scope = scope;
}
@Override
public String toString() {
return "AuthTokenInfo [access_token=" + access_token + ", token_type=" + token_type + ", refresh_token="
+ refresh_token + ", expires_in=" + expires_in + ", scope=" + scope + "]";
}
}