Package de.msi.oauth.flow.user
Interface UserRequestToken
public interface UserRequestToken
This represents the result of the
UserObtainRequestToken operation.- Author:
- Martin Siegemund
- See Also:
- Obtaining an Unauthorized Request Token
-
Method Summary
Modifier and Type Method Description booleancallback()Retrieve the information about weather or not the user given callback has been confirmed by the service provider.RequestTokentoken()Retrieve the request token, returned by the service provider.RequestTokenSecrettokenSecret()Retrieve the token secret, returned by the service provider.
-
Method Details
-
token
RequestToken token()Retrieve the request token, returned by the service provider.- Returns:
- the request token
-
tokenSecret
RequestTokenSecret tokenSecret()Retrieve the token secret, returned by the service provider.- Returns:
- the token secret
-
callback
boolean callback()Retrieve the information about weather or not the user given callback has been confirmed by the service provider.- Returns:
trueif the callback has been accepted, otherwisefalse
-