diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fbf710..defca6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm # Changelog for "keycloak-client" ## [v2.0.0-SNAPSHOT] -- Removed the discovery functionality to be compatible with SmartGears.v4 and moved to the new library `keycloak-client-legacy-is` that will provide the backward compatibility. (#23478) +- Removed the discovery functionality to be compatible with SmartGears.v4 and moved to the new library `keycloak-client-legacy-is` that will provide the backward compatibility. (#23478). Fixed typo in `AccessToken` class for `setAccessToken(..)` method (#23654) ## [v1.3.0-SNAPSHOT] - Added functions to introspect and verify access tokens (both OIDC and UMA are supported) (#23326). diff --git a/src/main/java/org/gcube/common/keycloak/model/TokenResponse.java b/src/main/java/org/gcube/common/keycloak/model/TokenResponse.java index 3772057..bf502fd 100644 --- a/src/main/java/org/gcube/common/keycloak/model/TokenResponse.java +++ b/src/main/java/org/gcube/common/keycloak/model/TokenResponse.java @@ -60,7 +60,7 @@ public class TokenResponse implements Serializable { return accessToken; } - public void setSccessToken(String accessToken) { + public void setAccessToken(String accessToken) { this.accessToken = accessToken; }