Niceon 암호화 key 생성 수정

This commit is contained in:
jaewohong
2025-12-18 09:36:53 +09:00
parent 02b9717890
commit 68aac38f11
4 changed files with 78 additions and 31 deletions
@@ -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);