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 classOAuth2UserInfoInformation 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 aOAuth2UserInfousing 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 classOpenIDConnectUserInfoOpenID 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 UserInfoOpenIDConnectClient. createUserInfoFromIdTokenJwtClaims(JwtClaimsSet jwtClaims)Creates anOpenIDConnectUserInfoobject 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 anOpenIDConnectUserInfoobject.
-