Fixed typo in `AccessToken` class for `setAccessToken(..)` method (#23654)

This commit is contained in:
Mauro Mugnaini 2022-07-15 11:21:17 +02:00
parent c30cc9e646
commit 0adf0f86e5
2 changed files with 2 additions and 2 deletions

View File

@ -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).

View File

@ -60,7 +60,7 @@ public class TokenResponse implements Serializable {
return accessToken;
}
public void setSccessToken(String accessToken) {
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}