Uses of Interface
com.google.api.client.auth.oauth2.Credential.AccessMethod

Packages that use Credential.AccessMethod
com.google.api.client.auth.oauth2 OAuth 2.0 authorization as specified in the OAuth 2.0 Protocol
 

Uses of Credential.AccessMethod in com.google.api.client.auth.oauth2
 

Methods in com.google.api.client.auth.oauth2 that return Credential.AccessMethod
static Credential.AccessMethod BearerToken.authorizationHeaderAccessMethod()
          Returns a new instance of an immutable and thread-safe OAuth 2.0 method for accessing protected resources using the Authorization Request Header Field.
static Credential.AccessMethod BearerToken.formEncodedBodyAccessMethod()
          Returns a new instance of an immutable and thread-safe OAuth 2.0 method for accessing protected resources using the Form-Encoded Body Parameter.
 Credential.AccessMethod AuthorizationCodeFlow.getMethod()
          Returns the method of presenting the access token to the resource server (for example BearerToken.authorizationHeaderAccessMethod()).
 Credential.AccessMethod AuthorizationCodeFlow.Builder.getMethod()
          Returns the method of presenting the access token to the resource server (for example BearerToken.authorizationHeaderAccessMethod()).
 Credential.AccessMethod Credential.getMethod()
          Return the method of presenting the access token to the resource server (for example BearerToken.AuthorizationHeaderAccessMethod).
 Credential.AccessMethod Credential.Builder.getMethod()
          Returns the method of presenting the access token to the resource server (for example BearerToken.AuthorizationHeaderAccessMethod).
static Credential.AccessMethod BearerToken.queryParameterAccessMethod()
          Returns a new instance of an immutable and thread-safe OAuth 2.0 method for accessing protected resources using the URI Query Parameter.
 

Constructors in com.google.api.client.auth.oauth2 with parameters of type Credential.AccessMethod
AuthorizationCodeFlow.Builder(Credential.AccessMethod method, HttpTransport transport, JsonFactory jsonFactory, GenericUrl tokenServerUrl, HttpExecuteInterceptor clientAuthentication, String clientId, String authorizationServerEncodedUrl)
           
AuthorizationCodeFlow(Credential.AccessMethod method, HttpTransport transport, JsonFactory jsonFactory, GenericUrl tokenServerUrl, HttpExecuteInterceptor clientAuthentication, String clientId, String authorizationServerEncodedUrl, CredentialStore credentialStore, HttpRequestInitializer requestInitializer, String scopes)
           
Credential.Builder(Credential.AccessMethod method)
           
Credential(Credential.AccessMethod method)
          Constructor with the ability to access protected resources, but not refresh tokens.
Credential(Credential.AccessMethod method, HttpTransport transport, JsonFactory jsonFactory, String tokenServerEncodedUrl, HttpExecuteInterceptor clientAuthentication, HttpRequestInitializer requestInitializer, List<CredentialRefreshListener> refreshListeners)
           
 



Copyright © 2011-2012 Google. All Rights Reserved.