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.protobuf HTTP utilities for the Protocol Buffer format 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 AbstractHttpContent
          Abstract implementation of an HTTP content with typical options.
 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
          Deprecated. (scheduled to be made private in 1.6) Use HttpRequest.getContent() or HttpRequest.setContent(com.google.api.client.http.HttpContent)
 

Fields in com.google.api.client.http with type parameters of type HttpContent
 Collection<HttpContent> MultipartRelatedContent.parts
          Deprecated. (scheduled to be made private final in 1.6) Use MultipartRelatedContent.getParts()
 

Methods in com.google.api.client.http that return HttpContent
 HttpContent HttpRequest.getContent()
          Returns the HTTP request content or null for none.
 

Methods in com.google.api.client.http that return types with arguments of type HttpContent
 Collection<HttpContent> MultipartRelatedContent.getParts()
          Returns the 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.
static MultipartRelatedContent MultipartRelatedContent.forRequest(HttpRequest request, HttpContent... parts)
          Deprecated. (scheduled to be made private in 1.6) Use MultipartRelatedContent.MultipartRelatedContent(HttpContent, HttpContent...) and MultipartRelatedContent.forRequest(HttpRequest)
 HttpRequest HttpRequest.setContent(HttpContent content)
          Sets the HTTP request content or null for none.
abstract  void LowLevelHttpRequest.setContent(HttpContent content)
          Sets the HTTP request content.
 

Constructors in com.google.api.client.http with parameters of type HttpContent
MultipartRelatedContent(HttpContent firstPart, HttpContent... otherParts)
           
MultipartRelatedContent(HttpContent firstPart, HttpContent... otherParts)
           
 

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.protobuf
 

Classes in com.google.api.client.http.protobuf that implement HttpContent
 class ProtoHttpContent
          Serializes of a protocol buffer message to HTTP content.
 

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
          Deprecated. (scheduled to be removed in 1.6) Use AtomContent.forFeed(com.google.api.client.xml.XmlNamespaceDictionary, java.lang.Object)
 

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
          Deprecated. (scheduled to be made private in 1.6) Use MockLowLevelHttpRequest.getContent() or MockLowLevelHttpRequest.setContent(com.google.api.client.http.HttpContent)
 

Methods in com.google.api.client.testing.http that return HttpContent
 HttpContent MockLowLevelHttpRequest.getContent()
          Returns the 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 © 2011 Google. All Rights Reserved.