Interface ServiceContext
-
@Deprecated public interface ServiceContext
Deprecated.Service context for accessing selected Connect2id server components that may be required to process claims or grant handler requests. The exposed methods are only available during SPI request processing. Attempting to access these methods during SPIininitialisation
will produce anIllegalStateException
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description com.nimbusds.openid.connect.sdk.rp.OIDCClientInformation
getOIDCClientInformation(com.nimbusds.oauth2.sdk.id.ClientID clientID)
Deprecated.
-
-
-
Method Detail
-
getOIDCClientInformation
@Deprecated com.nimbusds.openid.connect.sdk.rp.OIDCClientInformation getOIDCClientInformation(com.nimbusds.oauth2.sdk.id.ClientID clientID)
Deprecated.Gets the information (metadata) for a registered OAuth 2.0 / OpenID Connect client.Use extensions of
InvocationContext
instead.- Parameters:
clientID
- The client ID. Must not benull
.- Returns:
- The client information,
null
if the client wasn't found.
-
-