Uses of Interface
com.github.scribejava.core.model.OAuthAsyncRequestCallback
-
Packages that use OAuthAsyncRequestCallback Package Description com.github.scribejava.core.httpclient com.github.scribejava.core.httpclient.jdk com.github.scribejava.core.oauth -
-
Uses of OAuthAsyncRequestCallback in com.github.scribejava.core.httpclient
Methods in com.github.scribejava.core.httpclient with parameters of type OAuthAsyncRequestCallback Modifier and Type Method Description <T> java.util.concurrent.Future<T>HttpClient. executeAsync(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, Verb httpVerb, java.lang.String completeUrl, byte[] bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter)<T> java.util.concurrent.Future<T>HttpClient. executeAsync(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, Verb httpVerb, java.lang.String completeUrl, MultipartPayload bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter)<T> java.util.concurrent.Future<T>HttpClient. executeAsync(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, Verb httpVerb, java.lang.String completeUrl, java.io.File bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter)<T> java.util.concurrent.Future<T>HttpClient. executeAsync(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, Verb httpVerb, java.lang.String completeUrl, java.lang.String bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter) -
Uses of OAuthAsyncRequestCallback in com.github.scribejava.core.httpclient.jdk
Methods in com.github.scribejava.core.httpclient.jdk with parameters of type OAuthAsyncRequestCallback Modifier and Type Method Description <T> java.util.concurrent.Future<T>JDKHttpClient. executeAsync(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, Verb httpVerb, java.lang.String completeUrl, byte[] bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter)<T> java.util.concurrent.Future<T>JDKHttpClient. executeAsync(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, Verb httpVerb, java.lang.String completeUrl, MultipartPayload bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter)<T> java.util.concurrent.Future<T>JDKHttpClient. executeAsync(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, Verb httpVerb, java.lang.String completeUrl, java.io.File bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter)<T> java.util.concurrent.Future<T>JDKHttpClient. executeAsync(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, Verb httpVerb, java.lang.String completeUrl, java.lang.String bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter) -
Uses of OAuthAsyncRequestCallback in com.github.scribejava.core.oauth
Methods in com.github.scribejava.core.oauth with parameters of type OAuthAsyncRequestCallback Modifier and Type Method Description java.util.concurrent.Future<Response>OAuthService. execute(OAuthRequest request, OAuthAsyncRequestCallback<Response> callback)<R> java.util.concurrent.Future<R>OAuthService. execute(OAuthRequest request, OAuthAsyncRequestCallback<R> callback, OAuthRequest.ResponseConverter<R> converter)java.util.concurrent.Future<OAuth2AccessToken>OAuth20Service. getAccessToken(java.lang.String code, OAuthAsyncRequestCallback<OAuth2AccessToken> callback)java.util.concurrent.Future<OAuth2AccessToken>OAuth20Service. getAccessToken(java.lang.String code, OAuthAsyncRequestCallback<OAuth2AccessToken> callback, java.lang.String pkceCodeVerifier)Start the request to retrieve the access token.java.util.concurrent.Future<OAuth1AccessToken>OAuth10aService. getAccessTokenAsync(OAuth1RequestToken requestToken, java.lang.String oauthVerifier, OAuthAsyncRequestCallback<OAuth1AccessToken> callback)Start the request to retrieve the access token.java.util.concurrent.Future<OAuth2AccessToken>OAuth20Service. getAccessTokenClientCredentialsGrant(OAuthAsyncRequestCallback<OAuth2AccessToken> callback)Start the request to retrieve the access token using client-credentials grant.java.util.concurrent.Future<OAuth2AccessToken>OAuth20Service. getAccessTokenPasswordGrantAsync(java.lang.String uname, java.lang.String password, OAuthAsyncRequestCallback<OAuth2AccessToken> callback)Request Access Token Password Grant async versionjava.util.concurrent.Future<OAuth1RequestToken>OAuth10aService. getRequestTokenAsync(OAuthAsyncRequestCallback<OAuth1RequestToken> callback)java.util.concurrent.Future<OAuth2AccessToken>OAuth20Service. refreshAccessToken(java.lang.String refreshToken, OAuthAsyncRequestCallback<OAuth2AccessToken> callback)java.util.concurrent.Future<java.lang.Void>OAuth20Service. revokeToken(java.lang.String tokenToRevoke, OAuthAsyncRequestCallback<java.lang.Void> callback)java.util.concurrent.Future<java.lang.Void>OAuth20Service. revokeToken(java.lang.String tokenToRevoke, OAuthAsyncRequestCallback<java.lang.Void> callback, TokenTypeHint tokenTypeHint)protected java.util.concurrent.Future<OAuth2AccessToken>OAuth20Service. sendAccessTokenRequestAsync(OAuthRequest request, OAuthAsyncRequestCallback<OAuth2AccessToken> callback)
-