Uses of Class
net.openid.appauth.TokenRequest
-
Packages that use TokenRequest Package Description net.openid.appauth AppAuth for Android. -
-
Uses of TokenRequest in net.openid.appauth
Fields in net.openid.appauth declared as TokenRequest Modifier and Type Field Description TokenRequestTokenResponse. requestThe token request associated with this response.Methods in net.openid.appauth that return TokenRequest Modifier and Type Method Description TokenRequestTokenRequest.Builder. build()Produces aTokenRequestinstance, if all necessary values have been provided.TokenRequestAuthorizationResponse. createTokenExchangeRequest()Creates a follow-up request to exchange a received authorization code for tokens.TokenRequestAuthorizationResponse. createTokenExchangeRequest(Map<String,String> additionalExchangeParameters)Creates a follow-up request to exchange a received authorization code for tokens, including the provided additional parameters.TokenRequestAuthState. createTokenRefreshRequest()Creates a token request for new tokens using the current refresh token.TokenRequestAuthState. createTokenRefreshRequest(Map<String,String> additionalParameters)Creates a token request for new tokens using the current refresh token, adding the specified additional parameters.static TokenRequestTokenRequest. jsonDeserialize(String json)Reads a token request from a JSON string representation produced byjsonSerializeString().static TokenRequestTokenRequest. jsonDeserialize(JSONObject json)Reads a token request from a JSON string representation produced byjsonSerialize().Methods in net.openid.appauth with parameters of type TokenRequest Modifier and Type Method Description voidAuthorizationService. performTokenRequest(TokenRequest request, AuthorizationService.TokenResponseCallback callback)Sends a request to the authorization service to exchange a code granted as part of an authorization request for a token.voidAuthorizationService. performTokenRequest(TokenRequest request, ClientAuthentication clientAuthentication, AuthorizationService.TokenResponseCallback callback)Sends a request to the authorization service to exchange a code granted as part of an authorization request for a token.TokenResponse.BuilderTokenResponse.Builder. setRequest(TokenRequest request)Specifies the request associated with this response.Constructors in net.openid.appauth with parameters of type TokenRequest Constructor Description Builder(TokenRequest request)Creates a token response associated with the specified request.
-