Uses of Class
com.nimbusds.oauth2.sdk.token.RefreshToken
-
Packages that use RefreshToken Package Description com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing OAuth 2.0 client requests and authorisation server responses.com.nimbusds.oauth2.sdk.token OAuth 2.0 access and refresh token implementations.com.nimbusds.openid.connect.sdk.token OpenID Connect token extensions. -
-
Uses of RefreshToken in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return RefreshToken Modifier and Type Method Description RefreshTokenTokenRequest. getExistingGrant()Returns the existing refresh token for incremental authorisation of a public client,nullif not specified.RefreshTokenRefreshTokenGrant. getRefreshToken()Gets the refresh token.Constructors in com.nimbusds.oauth2.sdk with parameters of type RefreshToken Constructor Description RefreshTokenGrant(RefreshToken refreshToken)Creates a new refresh token grant.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 (may be 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 RefreshToken Modifier and Type Method Description RefreshTokenTokens. getRefreshToken()Returns the optional refresh token.static RefreshTokenRefreshToken. 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 RefreshToken Constructor Description Tokens(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 RefreshToken Constructor Description OIDCTokens(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.
-