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

Packages that use HttpRequest
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.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
 

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

Methods in com.google.api.client.auth.oauth with parameters of type HttpRequest
 void OAuthParameters.initialize(HttpRequest request)
           
 void OAuthParameters.intercept(HttpRequest request)
           
 

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

Methods in com.google.api.client.auth.oauth2.draft10 with parameters of type HttpRequest
 boolean AccessProtectedResource.handleResponse(HttpRequest request, HttpResponse response, boolean retrySupported)
          Handler that will be invoked when an abnormal response is received.
 void AccessProtectedResource.initialize(HttpRequest request)
           
 void AccessProtectedResource.intercept(HttpRequest request)
          Invoked at the start of execute() before executing the HTTP request.
 

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

Fields in com.google.api.client.http declared as HttpRequest
 HttpRequest HttpResponse.request
          HTTP request.
 

Methods in com.google.api.client.http that return HttpRequest
 HttpRequest HttpTransport.buildDeleteRequest()
          Deprecated. (scheduled to be removed in 1.5) Use HttpRequestFactory.buildDeleteRequest(GenericUrl)
 HttpRequest HttpRequestFactory.buildDeleteRequest(GenericUrl url)
          Builds a DELETE request for the given URL.
 HttpRequest HttpTransport.buildGetRequest()
          Deprecated. (scheduled to be removed in 1.5) Use HttpRequestFactory.buildGetRequest(GenericUrl)
 HttpRequest HttpRequestFactory.buildGetRequest(GenericUrl url)
          Builds a GET request for the given URL.
 HttpRequest HttpTransport.buildHeadRequest()
          Deprecated. (scheduled to be removed in 1.5) Use HttpRequestFactory.buildHeadRequest(GenericUrl)
 HttpRequest HttpRequestFactory.buildHeadRequest(GenericUrl url)
          Builds a HEAD request for the given URL.
 HttpRequest HttpTransport.buildPatchRequest()
          Deprecated. (scheduled to be removed in 1.5) Use HttpRequestFactory.buildPatchRequest(GenericUrl, HttpContent)
 HttpRequest HttpRequestFactory.buildPatchRequest(GenericUrl url, HttpContent content)
          Builds a PATCH request for the given URL and content.
 HttpRequest HttpTransport.buildPostRequest()
          Deprecated. (scheduled to be removed in 1.5) Use HttpRequestFactory.buildPostRequest(GenericUrl, HttpContent)
 HttpRequest HttpRequestFactory.buildPostRequest(GenericUrl url, HttpContent content)
          Builds a POST request for the given URL and content.
 HttpRequest HttpTransport.buildPutRequest()
          Deprecated. (scheduled to be removed in 1.5) Use HttpRequestFactory.buildPutRequest(GenericUrl, HttpContent)
 HttpRequest HttpRequestFactory.buildPutRequest(GenericUrl url, HttpContent content)
          Builds a PUT request for the given URL and content.
 HttpRequest HttpTransport.buildRequest()
          Deprecated. (scheduled to be made package private in 1.5) Use HttpRequestFactory.buildRequest(HttpMethod, GenericUrl, HttpContent)
 HttpRequest HttpRequestFactory.buildRequest(HttpMethod method, GenericUrl url, HttpContent content)
          Builds a request for the given HTTP method, URL, and content.
 

Methods in com.google.api.client.http with parameters of type HttpRequest
static MultipartRelatedContent MultipartRelatedContent.forRequest(HttpRequest request)
          Returns a new multi-part content serializer as the content for the given HTTP request.
 boolean HttpUnsuccessfulResponseHandler.handleResponse(HttpRequest request, HttpResponse response, boolean retrySupported)
          Handler that will be invoked when an abnormal response is received.
 void HttpRequestInitializer.initialize(HttpRequest request)
          Initializes a request.
 void HttpExecuteInterceptor.intercept(HttpRequest request)
          Invoked at the start of execute() before executing the HTTP request.
 void HttpExecuteIntercepter.intercept(HttpRequest request)
          Deprecated. Invoked at the start of execute().
 



Copyright © 2010-2011 Google. All Rights Reserved.