12345678910111213141516171819 |
- package com.diagbot.config;
- import org.springframework.security.oauth2.provider.OAuth2Authentication;
- import org.springframework.security.oauth2.provider.token.DefaultAccessTokenConverter;
- import org.springframework.stereotype.Component;
- import java.util.Map;
- @Component
- public class CustomAccessTokenConverter extends DefaultAccessTokenConverter {
- @Override
- public OAuth2Authentication extractAuthentication(Map<String, ?> claims) {
- OAuth2Authentication authentication = super.extractAuthentication(claims);
- authentication.setDetails(claims);
- return authentication;
- }
- }
|