Interface OpenIdConnectTokenAuthMethodReferencesMapper
-
@SupportedAll public interface OpenIdConnectTokenAuthMethodReferencesMapper
An interface which allows soap-sts publishers to generate the amr claim for issued OpenIdConnect tokens on the basis of the validated input token. See the amr claim here: http://openid.net/specs/openid-connect-core-1_0.html#IDToken.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>
getAuthnMethodsReferences(TokenTypeId inputTokenType, JsonValue inputToken)
Returns the Set of authentication methods references corresponding to the TokenType inputToken.
-
-
-
Method Detail
-
getAuthnMethodsReferences
Set<String> getAuthnMethodsReferences(TokenTypeId inputTokenType, JsonValue inputToken)
Returns the Set of authentication methods references corresponding to the TokenType inputToken.- Parameters:
inputTokenType
- The input token type passed as input to the token transformation operationinputToken
- The input token passed as input to the token transformation operation- Returns:
- A set of authentication method references appropriate to the validation of the input token type.
-
-