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.RefreshTokenGrant.getRefreshToken()
Gets the refresh token.Methods in com.nimbusds.oauth2.sdk with parameters of type RefreshTokenModifier and TypeMethodDescriptionTokenRequest.Builder.existingGrant
(RefreshToken existingGrant) Sets the existing refresh token for incremental authorisation of a public client.Constructors in com.nimbusds.oauth2.sdk with parameters of type RefreshTokenModifierConstructorDescriptionRefreshTokenGrant
(RefreshToken refreshToken) Creates a new refresh token grant.TokenRequest
(URI endpoint, ClientID clientID, AuthorizationGrant authzGrant, Scope scope, List<AuthorizationDetail> authorizationDetails, List<URI> resources, RefreshToken existingGrant, DeviceSecret deviceSecret, Map<String, List<String>> customParams) Creates a new token request, with no (explicit) client authentication and extension and custom parameters.TokenRequest
(URI endpoint, ClientID clientID, AuthorizationGrant authzGrant, Scope scope, List<AuthorizationDetail> authorizationDetails, List<URI> resources, RefreshToken existingGrant, Map<String, List<String>> customParams) Deprecated.TokenRequest
(URI endpoint, ClientID clientID, AuthorizationGrant authzGrant, Scope scope, List<URI> resources, RefreshToken existingGrant, Map<String, List<String>> customParams) Deprecated. -
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
(com.nimbusds.jwt.JWT idToken, AccessToken accessToken, RefreshToken refreshToken, DeviceSecret deviceSecret) Creates a new OpenID Connect tokens instance.OIDCTokens
(AccessToken accessToken, RefreshToken refreshToken) Creates a new OpenID Connect tokens instance without an ID token.OIDCTokens
(AccessToken accessToken, RefreshToken refreshToken, DeviceSecret deviceSecret) 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.OIDCTokens
(String idTokenString, AccessToken accessToken, RefreshToken refreshToken, DeviceSecret deviceSecret) Creates a new OpenID Connect tokens instance.