plus.easydo.starter.oauth.server.model.OauthCode Maven / Gradle / Ivy
The newest version!
package plus.easydo.starter.oauth.server.model;
import java.io.Serializable;
/**
* 存储授权码的对象
* @author yuzhanfeng
*/
public class OauthCode implements Serializable {
private static final long serialVersionUID = -1326285297837903604L;
private String clientId;
private String code;
private byte[] authentication;
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public byte[] getAuthentication() {
return authentication;
}
public void setAuthentication(byte[] authentication) {
this.authentication = authentication;
}
}