Interface LoginHintResolver
- All Superinterfaces:
Lifecycle
Service Provider Interface (SPI) to resolve a
login_hint request
parameter to a subject identifier.
Implementations must be thread-safe.
-
Method Summary
Modifier and TypeMethodDescriptioncom.nimbusds.oauth2.sdk.id.SubjectresolveToSubject(String loginHint, InvocationContext invocationCtx) Resolves the specifiedlogin_hintto a subject identifier.
-
Method Details
-
resolveToSubject
com.nimbusds.oauth2.sdk.id.Subject resolveToSubject(String loginHint, InvocationContext invocationCtx) throws LoginHintResolveException Resolves the specifiedlogin_hintto a subject identifier.- Parameters:
loginHint- The login hint. Notnull.invocationCtx- The invocation context. Notnull.- Returns:
- The subject identifier.
- Throws:
LoginHintResolveException- If thelogin_hintcouldn't be resolved.
-