com.bimface.sdk.bean.response.AccessTokenBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bimface-java-sdk Show documentation
Show all versions of bimface-java-sdk Show documentation
Bimface provide the required call java sdk.
The newest version!
package com.bimface.sdk.bean.response;
import java.io.Serializable;
/**
* AccessToken的返回参数
*
* @author bimface, 2016-06-01.
*/
public class AccessTokenBean implements Serializable{
private static final long serialVersionUID = 3689610953146655948L;
private String token; // AccessToken
private String expireTime;// AccessToken的失效时间,格式:yyyy-MM-dd hh:mm:ss
public AccessTokenBean() {
}
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public String getExpireTime() {
return expireTime;
}
public void setExpireTime(String expireTime) {
this.expireTime = expireTime;
}
@Override
public String toString() {
return "AccessTokenBean [token=" + token + ", expireTime=" + expireTime + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy