Uses of Interface
com.google.api.client.extensions.auth.helpers.Credential

Packages that use Credential
com.google.api.client.extensions.appengine.auth.helpers Implementation of the auth object interface to obtain and manage OAuth2 credentials using an assertion flow that will identify an App Engine application as itself to the auth server. 
com.google.api.client.extensions.auth.helpers Auth object framework that will provide an interface to create easy to use, object-oriented methods to obtain and manage auth credentials. 
com.google.api.client.extensions.auth.helpers.appengine Implementation of the auth object interface to obtain and manage OAuth2 credentials using an assertion flow that will identify an App Engine application as itself to the auth server. 
com.google.api.client.extensions.auth.helpers.oauth Implementation of auth objects to obtain and manage OAuth 1 credentials using the web server flow. 
com.google.api.client.extensions.auth.helpers.oauth2.draft10 Implementation of the auth object interface to obtain and manage OAuth2 credentials using the web server flow. 
com.google.api.client.extensions.servlet.auth Servlets that can be completed by users to create and complete a web server auth flow to obtain a credential. 
 

Uses of Credential in com.google.api.client.extensions.appengine.auth.helpers
 

Methods in com.google.api.client.extensions.appengine.auth.helpers that return Credential
 Credential AppAssertionFlow.loadOrCreateCredential(javax.jdo.PersistenceManager pm)
           
 

Uses of Credential in com.google.api.client.extensions.auth.helpers
 

Methods in com.google.api.client.extensions.auth.helpers that return Credential
 Credential ThreeLeggedFlow.complete(String authorizationCode)
          After the user has authorized the request, the token or code obtained should be passed to this complete function to allow us to exchange the code with the authentication server for a Credential.
 Credential ThreeLeggedFlow.loadCredential(javax.jdo.PersistenceManager pm)
          Convenience function that will load a credential based on the userId for which this flow was instantiated.
 Credential TwoLeggedFlow.loadOrCreateCredential(javax.jdo.PersistenceManager pm)
          Load the instance of Credential associated with this flow instance or create a new one if one can not be loaded.
 

Uses of Credential in com.google.api.client.extensions.auth.helpers.appengine
 

Classes in com.google.api.client.extensions.auth.helpers.appengine that implement Credential
 class AppAssertionCredential
          Deprecated. (scheduled to be removed in 1.7) Use AppAssertionCredential
 

Methods in com.google.api.client.extensions.auth.helpers.appengine that return Credential
 Credential AppAssertionFlow.loadOrCreateCredential(javax.jdo.PersistenceManager pm)
          Deprecated.  
 

Uses of Credential in com.google.api.client.extensions.auth.helpers.oauth
 

Classes in com.google.api.client.extensions.auth.helpers.oauth that implement Credential
 class OAuthHmacCredential
          OAuth 1 credential which uses the OAuthHmacSigner to sign requests.
 

Methods in com.google.api.client.extensions.auth.helpers.oauth that return Credential
 Credential OAuthHmacThreeLeggedFlow.complete(String authorizationCode)
           
 Credential OAuthHmacThreeLeggedFlow.loadCredential(javax.jdo.PersistenceManager pm)
           
 

Uses of Credential in com.google.api.client.extensions.auth.helpers.oauth2.draft10
 

Classes in com.google.api.client.extensions.auth.helpers.oauth2.draft10 that implement Credential
 class OAuth2Credential
          Credential implementation that is used to authorize OAuth2 enabled requests through the use of the access_token header, as well as refresh the token when it is required.
 

Methods in com.google.api.client.extensions.auth.helpers.oauth2.draft10 that return Credential
 Credential OAuth2ThreeLeggedFlow.complete(String authorizationCode)
           
 Credential OAuth2ThreeLeggedFlow.loadCredential(javax.jdo.PersistenceManager pm)
           
 

Uses of Credential in com.google.api.client.extensions.servlet.auth
 

Methods in com.google.api.client.extensions.servlet.auth that return Credential
protected  Credential AbstractTwoLeggedFlowServlet.getCredential(javax.servlet.http.HttpServletRequest req)
          Fetch a credential associated with this request.
protected  Credential AbstractFlowUserServlet.getCredential(javax.servlet.http.HttpServletRequest req)
          Fetch a credential associated with this request.
 



Copyright © 2011 Google. All Rights Reserved.