Interface TokenResponseContext
-
- All Superinterfaces:
InvocationContext
public interface TokenResponseContext extends InvocationContext
The token response context.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable net.minidev.json.JSONObject
getAuthorizationData()
For a successful token response returns the optional authorisation data.@Nullable com.nimbusds.openid.connect.sdk.rp.OIDCClientInformation
getOIDCClientInformation()
If the requesting client is successfully authenticated or identified at the token endpoint returns its registered information.-
Methods inherited from interface com.nimbusds.openid.connect.provider.spi.InvocationContext
getIssuer
-
-
-
-
Method Detail
-
getOIDCClientInformation
@Nullable com.nimbusds.openid.connect.sdk.rp.OIDCClientInformation getOIDCClientInformation()
If the requesting client is successfully authenticated or identified at the token endpoint returns its registered information.- Returns:
- The client information,
null
if not available.
-
getAuthorizationData
@Nullable net.minidev.json.JSONObject getAuthorizationData()
For a successful token response returns the optional authorisation data.- Returns:
- The authorisation data,
null
if not specified.
-
-