Uses of Interface
com.github.scribejava.core.model.OAuthAsyncRequestCallback
Packages that use OAuthAsyncRequestCallback
Package
Description
-
Uses of OAuthAsyncRequestCallback in com.github.scribejava.core.httpclient
Methods in com.github.scribejava.core.httpclient with parameters of type OAuthAsyncRequestCallbackModifier and TypeMethodDescription<T> Future<T>HttpClient.executeAsync(String userAgent, Map<String, String> headers, Verb httpVerb, String completeUrl, byte[] bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter) <T> Future<T>HttpClient.executeAsync(String userAgent, Map<String, String> headers, Verb httpVerb, String completeUrl, MultipartPayload bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter) <T> Future<T>HttpClient.executeAsync(String userAgent, Map<String, String> headers, Verb httpVerb, String completeUrl, File bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter) <T> Future<T>HttpClient.executeAsync(String userAgent, Map<String, String> headers, Verb httpVerb, String completeUrl, 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 OAuthAsyncRequestCallbackModifier and TypeMethodDescription<T> Future<T>JDKHttpClient.executeAsync(String userAgent, Map<String, String> headers, Verb httpVerb, String completeUrl, byte[] bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter) <T> Future<T>JDKHttpClient.executeAsync(String userAgent, Map<String, String> headers, Verb httpVerb, String completeUrl, MultipartPayload bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter) <T> Future<T>JDKHttpClient.executeAsync(String userAgent, Map<String, String> headers, Verb httpVerb, String completeUrl, File bodyContents, OAuthAsyncRequestCallback<T> callback, OAuthRequest.ResponseConverter<T> converter) <T> Future<T>JDKHttpClient.executeAsync(String userAgent, Map<String, String> headers, Verb httpVerb, String completeUrl, 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 OAuthAsyncRequestCallbackModifier and TypeMethodDescriptionOAuthService.execute(OAuthRequest request, OAuthAsyncRequestCallback<Response> callback) <R> Future<R>OAuthService.execute(OAuthRequest request, OAuthAsyncRequestCallback<R> callback, OAuthRequest.ResponseConverter<R> converter) OAuth20Service.getAccessToken(AccessTokenRequestParams params, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Start the request to retrieve the access token.OAuth20Service.getAccessToken(String code, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth10aService.getAccessTokenAsync(OAuth1RequestToken requestToken, String oauthVerifier, OAuthAsyncRequestCallback<OAuth1AccessToken> callback) Start the request to retrieve the access token.OAuth20Service.getAccessTokenClientCredentialsGrant(OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Start the request to retrieve the access token using client-credentials grant.OAuth20Service.getAccessTokenClientCredentialsGrant(String scope, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.getAccessTokenDeviceAuthorizationGrant(DeviceAuthorization deviceAuthorization, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.getAccessTokenPasswordGrantAsync(String username, String password, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Request Access Token Password Grant async versionOAuth20Service.getAccessTokenPasswordGrantAsync(String username, String password, String scope, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.getDeviceAuthorizationCodes(OAuthAsyncRequestCallback<DeviceAuthorization> callback) OAuth20Service.getDeviceAuthorizationCodes(String scope, OAuthAsyncRequestCallback<DeviceAuthorization> callback) OAuth10aService.getRequestTokenAsync(OAuthAsyncRequestCallback<OAuth1RequestToken> callback) OAuth20Service.refreshAccessToken(String refreshToken, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.refreshAccessToken(String refreshToken, String scope, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.revokeToken(String tokenToRevoke, OAuthAsyncRequestCallback<Void> callback) OAuth20Service.revokeToken(String tokenToRevoke, OAuthAsyncRequestCallback<Void> callback, TokenTypeHint tokenTypeHint) protected Future<OAuth2AccessToken>OAuth20Service.sendAccessTokenRequestAsync(OAuthRequest request, OAuthAsyncRequestCallback<OAuth2AccessToken> callback)