Interface DuoOIDCClientCapabilities
-
- All Known Subinterfaces:
DuoOIDCClient
- All Known Implementing Classes:
AbstractDuoOIDCClient
public interface DuoOIDCClientCapabilitiesExposes capabilities of aDuoOIDCClient.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisSupportsDynamicRedirectURI()Does this client support a redirectURI supplied dynamically per-request.booleanisSupportsNonce()Does this client support the OIDC nonce parameter.
-
-
-
Method Detail
-
isSupportsNonce
boolean isSupportsNonce()
Does this client support the OIDC nonce parameter.
If the client does support a nonce, it must be included by the client in the authorisation request URL, where it must then be returned by the OP in the id_token as part of the 2FA result.
- Returns:
- true iff the client supports the nonce parameter, false otherwise.
-
isSupportsDynamicRedirectURI
boolean isSupportsDynamicRedirectURI()
Does this client support a redirectURI supplied dynamically per-request.
If the client does, a redirectURI will be supplied (and should be used) when constructing the authorization redirect, and during auth_code for id_token exchange.
- Returns:
- true iff the client supports a per-request redirectURI, false otherwise.
-
-