Uses of Interface
com.google.api.client.http.HttpParser

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

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

Classes in com.google.api.client.http that implement HttpParser
 class UrlEncodedParser
          Implements support for HTTP form content encoding parsing of type application/x-www-form-urlencoded as specified in the HTML 4.0 Specification.
 

Methods in com.google.api.client.http that return HttpParser
 HttpParser HttpResponse.getParser()
          Returns the HTTP response content parser to use for the content type of this HTTP response or null for none.
 HttpParser HttpRequest.getParser(String contentType)
          Returns the HTTP response content parser to use for the given content type or null if none is defined.
 HttpParser HttpTransport.getParser(String contentType)
          Deprecated. (scheduled to be removed in 1.5) Use HttpRequest.getParser(String) in an HttpRequestInitializer
 

Methods in com.google.api.client.http with parameters of type HttpParser
 void HttpRequest.addParser(HttpParser parser)
          Adds an HTTP response content parser.
 void HttpTransport.addParser(HttpParser parser)
          Deprecated. (scheduled to be removed in 1.5) Use HttpRequest.addParser(HttpParser) in an HttpRequestInitializer
 

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

Classes in com.google.api.client.http.json that implement HttpParser
 class JsonHttpParser
          Parses HTTP JSON response content into an data class of key/value pairs.
 

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

Classes in com.google.api.client.http.xml that implement HttpParser
 class XmlHttpParser
          XML HTTP parser into an data class of key/value pairs.
 

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

Classes in com.google.api.client.http.xml.atom that implement HttpParser
 class AtomParser
          Atom XML HTTP parser into an data class of key/value pairs.
 



Copyright © 2010-2011 Google. All Rights Reserved.