Fixed typo in documentation.

This commit is contained in:
George Sofianos 2019-07-09 23:41:40 +03:00
parent 43737a56bd
commit 8948ba3a48
1 changed files with 1 additions and 1 deletions

View File

@ -679,7 +679,7 @@ We can override this quite simply to alter the way granted authorities are deriv
```java
static class GrantedAuthoritiesExtractor extends JwtAuthenticationConverter {
protected Collection<GrantedAuthorities> extractAuthorities(Jwt jwt) {
protected Collection<GrantedAuthority> extractAuthorities(Jwt jwt) {
Collection<String> authorities = (Collection<String>)
jwt.getClaims().get("mycustomclaim");