Uses of Class
com.google.api.client.http.HttpTransport

Packages that use HttpTransport
com.google.api.client.auth.oauth OAuth 1.0 authorization as specified in RFC 5849: The OAuth 1.0 Protocol (see detailed package specification). 
com.google.api.client.auth.oauth2 OAuth 2.0 authorization as specified in The OAuth 2.0 Protocol (draft-ietf-oauth-v2-10) (see detailed package specification). 
com.google.api.client.auth.oauth2.draft10 OAuth 2.0 (draft 10) authorization as specified in The OAuth 2.0 Protocol (draft-ietf-oauth-v2-10) (see detailed package specification). 
com.google.api.client.http Subset of HTTP 1.1 needed from the specification in RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1
com.google.api.client.http.apache HTTP Transport library for Google API's based on Apache HTTP Client version 4. 
com.google.api.client.http.javanet HTTP Transport library for Google API's based on the java.net package. 
com.google.api.client.testing.http Testing utilities used for writing tests based on this library. 
 

Uses of HttpTransport in com.google.api.client.auth.oauth
 

Fields in com.google.api.client.auth.oauth declared as HttpTransport
 HttpTransport AbstractOAuthGetToken.transport
          HTTP transport required for executing request in AbstractOAuthGetToken.execute().
 

Methods in com.google.api.client.auth.oauth with parameters of type HttpTransport
 void OAuthParameters.signRequestsUsingAuthorizationHeader(HttpTransport transport)
          Deprecated. (scheduled to be removed in 1.5) Use OAuthParameters directly
 

Uses of HttpTransport in com.google.api.client.auth.oauth2
 

Fields in com.google.api.client.auth.oauth2 declared as HttpTransport
 HttpTransport AccessTokenRequest.transport
          Deprecated. (REQUIRED) HTTP transport required for executing request in AccessTokenRequest.execute().
 

Methods in com.google.api.client.auth.oauth2 with parameters of type HttpTransport
static void AccessProtectedResource.usingAuthorizationHeader(HttpTransport transport, String accessToken)
          Deprecated. Sets the "Authorization" header using the given access token for every executed HTTP request for the given HTTP transport.
static void AccessProtectedResource.usingFormEncodedBody(HttpTransport transport, String accessToken)
          Deprecated. Sets the "oauth_token" parameter in the form-encoded HTTP body using the given access token for every executed HTTP request for the given HTTP transport.
static void AccessProtectedResource.usingQueryParameter(HttpTransport transport, String accessToken)
          Deprecated. Sets the "oauth_token" URI query parameter using the given access token for every executed HTTP request for the given HTTP transport.
 

Uses of HttpTransport in com.google.api.client.auth.oauth2.draft10
 

Fields in com.google.api.client.auth.oauth2.draft10 declared as HttpTransport
 HttpTransport AccessTokenRequest.transport
          (REQUIRED) HTTP transport required for executing request in AccessTokenRequest.execute().
 

Methods in com.google.api.client.auth.oauth2.draft10 that return HttpTransport
 HttpTransport AccessProtectedResource.getTransport()
          Return the HTTP transport for executing refresh token request or null for none.
 

Constructors in com.google.api.client.auth.oauth2.draft10 with parameters of type HttpTransport
AccessProtectedResource(String accessToken, AccessProtectedResource.Method method, HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret, String refreshToken)
          Constructor to use to be able to refresh token when an access token expires.
AccessTokenRequest.AssertionGrant(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientSecret, String assertionType, String assertion)
           
AccessTokenRequest.AuthorizationCodeGrant(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret, String code, String redirectUri)
           
AccessTokenRequest.RefreshTokenGrant(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret, String refreshToken)
           
AccessTokenRequest.ResourceOwnerPasswordCredentialsGrant(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret, String username, String password)
           
AccessTokenRequest(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientSecret)
           
AccessTokenRequest(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret)
           
 

Uses of HttpTransport in com.google.api.client.http
 

Fields in com.google.api.client.http declared as HttpTransport
 HttpTransport HttpResponse.transport
          HTTP transport.
 HttpTransport HttpRequest.transport
          HTTP transport.
 HttpTransport HttpRequestFactory.transport
          HTTP transport.
 

Uses of HttpTransport in com.google.api.client.http.apache
 

Subclasses of HttpTransport in com.google.api.client.http.apache
 class ApacheHttpTransport
          Thread-safe HTTP transport based on the Apache HTTP Client library.
 

Uses of HttpTransport in com.google.api.client.http.javanet
 

Subclasses of HttpTransport in com.google.api.client.http.javanet
 class NetHttpTransport
          Thread-safe HTTP low-level transport based on the java.net package.
 

Uses of HttpTransport in com.google.api.client.testing.http
 

Subclasses of HttpTransport in com.google.api.client.testing.http
 class MockHttpTransport
          Mock for HttpTransport.
 



Copyright © 2010-2011 Google. All Rights Reserved.