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

Packages that use HttpResponse
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.json JSON HTTP library based on the pluggable HTTP library. 
com.google.api.client.http.xml XML HTTP library based on the pluggable HTTP library. 
com.google.api.client.http.xml.atom Atom XML HTTP library based on the pluggable HTTP library. 
com.google.api.client.xml.atom Utilities for Atom XML. 
 

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

Methods in com.google.api.client.auth.oauth2 that return HttpResponse
 HttpResponse AccessTokenRequest.execute()
          Deprecated. Executes request for an access token, and returns the HTTP response.
 

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

Methods in com.google.api.client.auth.oauth2.draft10 that return HttpResponse
 HttpResponse AccessTokenRequest.executeUnparsed()
          Executes request for an access token, and returns the HTTP response.
 

Methods in com.google.api.client.auth.oauth2.draft10 with parameters of type HttpResponse
 boolean AccessProtectedResource.handleResponse(HttpRequest request, HttpResponse response, boolean retrySupported)
          Handler that will be invoked when an abnormal response is received.
 

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

Fields in com.google.api.client.http declared as HttpResponse
 HttpResponse HttpResponseException.response
          HTTP response.
 

Methods in com.google.api.client.http that return HttpResponse
 HttpResponse HttpRequest.execute()
          Execute the HTTP request and returns the HTTP response.
 

Methods in com.google.api.client.http with parameters of type HttpResponse
static String HttpResponseException.computeMessage(HttpResponse response)
          Returns an exception message to use for the given HTTP response.
 boolean HttpUnsuccessfulResponseHandler.handleResponse(HttpRequest request, HttpResponse response, boolean retrySupported)
          Handler that will be invoked when an abnormal response is received.
<T> T
UrlEncodedParser.parse(HttpResponse response, Class<T> dataClass)
           
<T> T
HttpParser.parse(HttpResponse response, Class<T> dataClass)
          Parses the given HTTP response into a new instance of the the given data class of key/value pairs.
 

Constructors in com.google.api.client.http with parameters of type HttpResponse
HttpResponseException(HttpResponse response)
           
 

Uses of HttpResponse in com.google.api.client.http.json
 

Methods in com.google.api.client.http.json with parameters of type HttpResponse
<T> T
JsonHttpParser.parse(HttpResponse response, Class<T> dataClass)
           
static JsonParser JsonHttpParser.parserForResponse(JsonFactory jsonFactory, HttpResponse response)
          Returns a JSON parser to use for parsing the given HTTP response.
 

Uses of HttpResponse in com.google.api.client.http.xml
 

Methods in com.google.api.client.http.xml with parameters of type HttpResponse
<T> T
XmlHttpParser.parse(HttpResponse response, Class<T> dataClass)
          Default implementation parses the content of the response into the data class of key/value pairs, but subclasses may override.
 

Uses of HttpResponse in com.google.api.client.http.xml.atom
 

Methods in com.google.api.client.http.xml.atom with parameters of type HttpResponse
static
<T,E> AtomFeedParser<T,E>
AtomFeedParser.create(HttpResponse response, XmlNamespaceDictionary namespaceDictionary, Class<T> feedClass, Class<E> entryClass)
          Parses the given HTTP response using the given feed class and entry class.
 

Uses of HttpResponse in com.google.api.client.xml.atom
 

Methods in com.google.api.client.xml.atom with parameters of type HttpResponse
static
<T,E> AtomFeedParser<T,E>
AtomFeedParser.create(HttpResponse response, XmlNamespaceDictionary namespaceDictionary, Class<T> feedClass, Class<E> entryClass)
          Deprecated. Parses the given HTTP response using the given feed class and entry class.
 



Copyright © 2010-2011 Google. All Rights Reserved.