Class DelegatingJwtGrantedAuthoritiesConverter
java.lang.Object
org.springframework.security.oauth2.server.resource.authentication.DelegatingJwtGrantedAuthoritiesConverter
- All Implemented Interfaces:
org.springframework.core.convert.converter.Converter<Jwt,Collection<GrantedAuthority>>
public class DelegatingJwtGrantedAuthoritiesConverter
extends Object
implements org.springframework.core.convert.converter.Converter<Jwt,Collection<GrantedAuthority>>
- Since:
- 5.5
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDelegatingJwtGrantedAuthoritiesConverter(Collection<org.springframework.core.convert.converter.Converter<Jwt, Collection<GrantedAuthority>>> authoritiesConverters) DelegatingJwtGrantedAuthoritiesConverter(org.springframework.core.convert.converter.Converter<Jwt, Collection<GrantedAuthority>>... authoritiesConverters) Constructs aDelegatingJwtGrantedAuthoritiesConverterusing the provided array ofConverters -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.core.convert.converter.Converter
andThen
-
Constructor Details
-
DelegatingJwtGrantedAuthoritiesConverter
public DelegatingJwtGrantedAuthoritiesConverter(Collection<org.springframework.core.convert.converter.Converter<Jwt, Collection<GrantedAuthority>>> authoritiesConverters) - Parameters:
authoritiesConverters- theCollectionofConverters to use
-
DelegatingJwtGrantedAuthoritiesConverter
@SafeVarargs public DelegatingJwtGrantedAuthoritiesConverter(org.springframework.core.convert.converter.Converter<Jwt, Collection<GrantedAuthority>>... authoritiesConverters) Constructs aDelegatingJwtGrantedAuthoritiesConverterusing the provided array ofConverters- Parameters:
authoritiesConverters- the array ofConverters to use
-
-
Method Details
-
convert
ExtractGrantedAuthoritys from the givenJwt.The authorities are extracted from each delegated
Converterone at a time. For each converter, its authorities are added in order, with duplicates removed.- Specified by:
convertin interfaceorg.springframework.core.convert.converter.Converter<Jwt,Collection<GrantedAuthority>> - Parameters:
jwt- TheJwttoken- Returns:
- The
authoritiesread from the token scopes
-