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

Packages that use HttpContent
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.testing.http Testing utilities used for writing tests based on this library. 
 

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

Classes in com.google.api.client.http that implement HttpContent
 class AbstractInputStreamContent
          Serializes HTTP request content from an input stream into an output stream.
 class ByteArrayContent
          Concrete implementation of AbstractInputStreamContent that generates repeatable input streams based on the contents of byte array.
 class FileContent
          Concrete implementation of AbstractInputStreamContent that generates repeatable input streams based on the contents of a file.
 class InputStreamContent
          Concrete implementation of AbstractInputStreamContent that simply handles the transfer of data from an input stream to an output stream.
 class MultipartRelatedContent
          Serializes MIME Multipart/Related content as specified by RFC 2387: The MIME Multipart/Related Content-type.
 class UrlEncodedContent
          Implements support for HTTP form content encoding serialization of type application/x-www-form-urlencoded as specified in the HTML 4.0 Specification.
 

Fields in com.google.api.client.http declared as HttpContent
 HttpContent HttpRequest.content
          HTTP request content or null for none.
 

Fields in com.google.api.client.http with type parameters of type HttpContent
 Collection<HttpContent> MultipartRelatedContent.parts
          Collection of HTTP content parts.
 

Methods in com.google.api.client.http with parameters of type HttpContent
 HttpRequest HttpRequestFactory.buildPatchRequest(GenericUrl url, HttpContent content)
          Builds a PATCH request for the given URL and content.
 HttpRequest HttpRequestFactory.buildPostRequest(GenericUrl url, HttpContent content)
          Builds a POST request for the given URL and content.
 HttpRequest HttpRequestFactory.buildPutRequest(GenericUrl url, HttpContent content)
          Builds a PUT request for the given URL and content.
 HttpRequest HttpRequestFactory.buildRequest(HttpMethod method, GenericUrl url, HttpContent content)
          Builds a request for the given HTTP method, URL, and content.
abstract  void LowLevelHttpRequest.setContent(HttpContent content)
          Sets the HTTP request content.
 

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

Classes in com.google.api.client.http.json that implement HttpContent
 class JsonHttpContent
          Serializes JSON HTTP content based on the data key/value mapping object for an item.
 

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

Classes in com.google.api.client.http.xml that implement HttpContent
 class AbstractXmlHttpContent
          Abstract serializer for XML HTTP content based on the data key/value mapping object for an item.
 class XmlHttpContent
          Serializes XML HTTP content based on the data key/value mapping object for an item.
 

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

Classes in com.google.api.client.http.xml.atom that implement HttpContent
 class AtomContent
          Serializes Atom XML HTTP content based on the data key/value mapping object for an Atom entry.
 class AtomFeedContent
          Serializes Atom XML HTTP content based on the data key/value mapping object for an Atom feed.
 

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

Classes in com.google.api.client.testing.http that implement HttpContent
 class MockHttpContent
          Mock for HttpContent.
 

Fields in com.google.api.client.testing.http declared as HttpContent
 HttpContent MockLowLevelHttpRequest.content
          HTTP content or null for none.
 

Methods in com.google.api.client.testing.http with parameters of type HttpContent
 void MockLowLevelHttpRequest.setContent(HttpContent content)
           
 



Copyright © 2010-2011 Google. All Rights Reserved.