Uses of Interface
oauth.signpost.OAuthConsumer
-
Packages that use OAuthConsumer Package Description oauth.signpost oauth.signpost.basic oauth.signpost.commonshttp -
-
Uses of OAuthConsumer in oauth.signpost
Classes in oauth.signpost that implement OAuthConsumer Modifier and Type Class Description class
AbstractOAuthConsumer
ABC for consumer implementations.Methods in oauth.signpost with parameters of type OAuthConsumer Modifier and Type Method Description void
AbstractOAuthProvider. retrieveAccessToken(OAuthConsumer consumer, String oauthVerifier, String... customOAuthParams)
void
OAuthProvider. retrieveAccessToken(OAuthConsumer consumer, String oauthVerifier, String... customOAuthParams)
Queries the service provider for an access token.String
AbstractOAuthProvider. retrieveRequestToken(OAuthConsumer consumer, String callbackUrl, String... customOAuthParams)
String
OAuthProvider. retrieveRequestToken(OAuthConsumer consumer, String callbackUrl, String... customOAuthParams)
Queries the service provider for a request token.protected void
AbstractOAuthProvider. retrieveToken(OAuthConsumer consumer, String endpointUrl, HttpParameters customOAuthParams)
Implemented by subclasses. -
Uses of OAuthConsumer in oauth.signpost.basic
Classes in oauth.signpost.basic that implement OAuthConsumer Modifier and Type Class Description class
DefaultOAuthConsumer
The default implementation for an OAuth consumer. -
Uses of OAuthConsumer in oauth.signpost.commonshttp
Classes in oauth.signpost.commonshttp that implement OAuthConsumer Modifier and Type Class Description class
CommonsHttpOAuthConsumer
Supports signing HTTP requests of typeHttpRequest
.
-