com.google.api.client.auth.oauth
Class OAuthCredentialsResponse

java.lang.Object
  extended by com.google.api.client.auth.oauth.OAuthCredentialsResponse

public final class OAuthCredentialsResponse
extends Object

Data to parse a success response to a request for temporary or token credentials.

Since:
1.0
Author:
Yaniv Inbar

Field Summary
 Boolean callbackConfirmed
          "true" for temporary credentials request or null for a token credentials request.
 String token
          Credentials token.
 String tokenSecret
          Credentials shared-secret for use with "HMAC-SHA1" signature algorithm.
 
Constructor Summary
OAuthCredentialsResponse()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

token

public String token
Credentials token.


tokenSecret

public String tokenSecret
Credentials shared-secret for use with "HMAC-SHA1" signature algorithm. Used for OAuthHmacSigner.tokenSharedSecret.


callbackConfirmed

public Boolean callbackConfirmed
"true" for temporary credentials request or null for a token credentials request. The parameter is used to differentiate from previous versions of the protocol.

Constructor Detail

OAuthCredentialsResponse

public OAuthCredentialsResponse()


Copyright © 2010-2011 Google. All Rights Reserved.