Class RequestTokenResponse
java.lang.Object
com.amilesend.discogs.connection.auth.oauth.RequestTokenResponse
Describes the response during the OAuth flow when requesting the request token that is used during the handshake
to request permission from the user to grant the application access.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
boolean
Indicates if the client callback was confirmed.The associated token secret.getToken()
The request token.int
hashCode()
static RequestTokenResponse
parseBodyResponse
(String response) Parses a service response message body to extract and build aRequestTokenResponse
.
-
Method Details
-
parseBodyResponse
Parses a service response message body to extract and build aRequestTokenResponse
.- Parameters:
response
- the response body contents- Returns:
- the request token response
-
builder
-
equals
-
hashCode
-
getToken
The request token. -
getSecret
The associated token secret. -
getCallbackConfirmed
Indicates if the client callback was confirmed.
-