Interface OpenIdAdditionalClaimsConfiguration
-
- All Known Implementing Classes:
OauthConfigurationProperties.OpenIdConfigurationProperties.AdditionalClaimsConfigurationProperties
public interface OpenIdAdditionalClaimsConfiguration
Configuration for additional claims to be added to the resulting JWT created from an OpenID authentication.- Since:
- 1.2.0
- Author:
- James Kleeh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isAccessToken()
boolean
isJwt()
boolean
isRefreshToken()
-
-
-
Method Detail
-
isJwt
boolean isJwt()
- Returns:
- True if the provider's JWT should be included in the Micronaut JWT
-
isAccessToken
boolean isAccessToken()
- Returns:
- True if the provider's access token should be included in the Micronaut JWT
-
isRefreshToken
boolean isRefreshToken()
- Returns:
- True if the provider's refresh token should be included in the Micronaut JWT
-
-