com.yanyun.auth.model.TokenModel Maven / Gradle / Ivy
package com.yanyun.auth.model;
/**
* 令牌模型
*/
public class TokenModel {
//用户令牌
private String access_token;
//令牌类型
private String token_type;
//刷新令牌
private String refresh_token;
//超时时间
private Integer expires_in;
//该令牌对应的系统clientId
private String clientId;
//用户自定义信息
private String customInfo;
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 Integer getExpires_in() {
return expires_in;
}
public void setExpires_in(Integer expires_in) {
this.expires_in = expires_in;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getCustomInfo() {
return customInfo;
}
public void setCustomInfo(String customInfo) {
this.customInfo = customInfo;
}
@Override
public String toString() {
return "TokenModel{" +
"access_token='" + access_token + '\'' +
", token_type='" + token_type + '\'' +
", refresh_token='" + refresh_token + '\'' +
", expires_in=" + expires_in +
", clientId='" + clientId + '\'' +
", customInfo='" + customInfo + '\'' +
'}';
}
}