Uses of Class
com.nimbusds.oauth2.sdk.token.RefreshToken
Packages that use RefreshToken
Package
Description
Classes for representing, serialising and parsing core OAuth 2.0 concepts.
OAuth 2.0 access and refresh token implementations.
OpenID Connect token extensions.
-
Uses of RefreshToken in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return RefreshTokenModifier and TypeMethodDescriptionTokenRequest.getExistingGrant()
Returns the existing refresh token for incremental authorisation of a public client,null
if not specified.RefreshTokenGrant.getRefreshToken()
Gets the refresh token.Constructors in com.nimbusds.oauth2.sdk with parameters of type RefreshTokenModifierConstructorDescriptionRefreshTokenGrant
(RefreshToken refreshToken) Creates a new refresh token grant.TokenRequest
(URI uri, ClientID clientID, AuthorizationGrant authzGrant, Scope scope, List<AuthorizationDetail> authorizationDetails, List<URI> resources, RefreshToken existingGrant, Map<String, List<String>> customParams) Creates a new token request, with no explicit client authentication (maybe present in the grant depending on its type) and extension and custom parameters.TokenRequest
(URI uri, ClientID clientID, AuthorizationGrant authzGrant, Scope scope, List<URI> resources, RefreshToken existingGrant, Map<String, List<String>> customParams) Creates a new token request, with no explicit client authentication (maybe present in the grant depending on its type) and extension and custom parameters. -
Uses of RefreshToken in com.nimbusds.oauth2.sdk.token
Methods in com.nimbusds.oauth2.sdk.token that return RefreshTokenModifier and TypeMethodDescriptionTokens.getRefreshToken()
Returns the optional refresh token.static RefreshToken
RefreshToken.parse
(net.minidev.json.JSONObject jsonObject) Parses a refresh token from a JSON object access token response.Constructors in com.nimbusds.oauth2.sdk.token with parameters of type RefreshTokenModifierConstructorDescriptionTokens
(AccessToken accessToken, RefreshToken refreshToken) Creates a new tokens instance. -
Uses of RefreshToken in com.nimbusds.openid.connect.sdk.token
Constructors in com.nimbusds.openid.connect.sdk.token with parameters of type RefreshTokenModifierConstructorDescriptionOIDCTokens
(com.nimbusds.jwt.JWT idToken, AccessToken accessToken, RefreshToken refreshToken) Creates a new OpenID Connect tokens instance.OIDCTokens
(AccessToken accessToken, RefreshToken refreshToken) Creates a new OpenID Connect tokens instance without an ID token.OIDCTokens
(String idTokenString, AccessToken accessToken, RefreshToken refreshToken) Creates a new OpenID Connect tokens instance.