Uses of Interface
org.forgerock.oauth.UserInfo
-
Packages that use UserInfo Package Description org.forgerock.oauth Commons OAuth Framework API.org.forgerock.oauth.clients.apple Forgerock Apple Client implementation.org.forgerock.oauth.clients.linkedin Forgerock LinkedIn Client Implementation.org.forgerock.oauth.clients.oauth2 OAuth 2.0 ForgeRock Client Implementation.org.forgerock.oauth.clients.oidc OpenID Connect ForgeRock Client Implementation. -
-
Uses of UserInfo in org.forgerock.oauth
Methods in org.forgerock.oauth that return types with arguments of type UserInfo Modifier and Type Method Description Promise<UserInfo,OAuthException>
OAuthClient. getUserInfo(DataStore dataStore)
Return the authenticated user's info from the external authentication server. -
Uses of UserInfo in org.forgerock.oauth.clients.apple
Methods in org.forgerock.oauth.clients.apple that return types with arguments of type UserInfo Modifier and Type Method Description Promise<UserInfo,OAuthException>
AppleClient. getUserInfo(DataStore dataStore)
-
Uses of UserInfo in org.forgerock.oauth.clients.linkedin
Methods in org.forgerock.oauth.clients.linkedin that return types with arguments of type UserInfo Modifier and Type Method Description Promise<UserInfo,OAuthException>
LinkedInClient. getUserInfo(DataStore dataStore)
-
Uses of UserInfo in org.forgerock.oauth.clients.oauth2
Classes in org.forgerock.oauth.clients.oauth2 that implement UserInfo Modifier and Type Class Description class
OAuth2UserInfo
Information about the current user.Methods in org.forgerock.oauth.clients.oauth2 that return types with arguments of type UserInfo Modifier and Type Method Description Promise<UserInfo,OAuthException>
OAuth2Client. getUserInfo(DataStore dataStore)
protected Function<JsonValue,UserInfo,OAuthException>
OAuth2Client. mapToUserInfo()
Creates aOAuth2UserInfo
using a users raw profile. -
Uses of UserInfo in org.forgerock.oauth.clients.oidc
Classes in org.forgerock.oauth.clients.oidc that implement UserInfo Modifier and Type Class Description class
OpenIDConnectUserInfo
OpenID Connect user information related to a users current social session.Methods in org.forgerock.oauth.clients.oidc that return UserInfo Modifier and Type Method Description protected UserInfo
OpenIDConnectClient. createUserInfoFromIdTokenJwtClaims(JwtClaimsSet jwtClaims)
Creates anOpenIDConnectUserInfo
object from id_token jwt Claims.Methods in org.forgerock.oauth.clients.oidc that return types with arguments of type UserInfo Modifier and Type Method Description Promise<UserInfo,OAuthException>
OpenIDConnectClient. getUserInfo(DataStore dataStore)
protected Function<JsonValue,UserInfo,OAuthException>
OpenIDConnectClient. mapToUserInfo(JwtClaimsSet jwtClaims)
Maps a retrieved raw profile from the user info endpoint to anOpenIDConnectUserInfo
object.
-