Niceon 암호화 key 생성 수정
This commit is contained in:
@@ -24,6 +24,7 @@ public class OAuth2AccessTokenVO implements AccessTokenVO, Serializable
|
||||
private Date expiration;
|
||||
private String scope;
|
||||
private String clientUseCode;
|
||||
private String clientId;
|
||||
|
||||
public OAuth2AccessTokenVO() {
|
||||
|
||||
@@ -35,6 +36,7 @@ public class OAuth2AccessTokenVO implements AccessTokenVO, Serializable
|
||||
this.expiration = oAuth2AccessTokenVO.getExpiration();
|
||||
this.scope = oAuth2AccessTokenVO.getScope();
|
||||
this.clientUseCode = oAuth2AccessTokenVO.getClientUseCode();
|
||||
this.clientId = oAuth2AccessTokenVO.getClientId();
|
||||
}
|
||||
|
||||
public String getAccessToken() {
|
||||
@@ -92,6 +94,14 @@ public class OAuth2AccessTokenVO implements AccessTokenVO, Serializable
|
||||
public void setClientUseCode(String clientUseCode) {
|
||||
this.clientUseCode = clientUseCode;
|
||||
}
|
||||
|
||||
public String getClientId() {
|
||||
return clientId;
|
||||
}
|
||||
|
||||
public void setClientId(String clientId) {
|
||||
this.clientId = clientId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return ReflectionToStringBuilder.toString(this, ToStringStyle.DEFAULT_STYLE);
|
||||
|
||||
Reference in New Issue
Block a user