Skip to content

Commit 3b863ea

Browse files
committed
feat: OIDC extract claims from OIDC IdToken, UserInfo Endpoint and User attributes
1 parent 977fac9 commit 3b863ea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

backend/src/main/java/eu/zuinnote/example/springwebdemo/configuration/SecurityConfigurationOidc.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,7 @@ private Set<GrantedAuthority> parseClaim(String type, String claim, Object claim
148148
.map(SimpleGrantedAuthority::new)
149149
.collect(Collectors.toCollection(HashSet::new)));
150150
} else { // unknown type of claim cannot be processed
151-
this.log.error(
152-
String.format("Error: Claim %s in %type has an unknown type", claim, type));
151+
this.log.error(String.format("Claim %s in %type has an unknown type", claim, type));
153152
}
154153
}
155154
return result;

0 commit comments

Comments
 (0)