Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
HttpMethod |
HttpRequest.getMethod()
Deprecated.
(scheduled to be removed in 1.14) Use
HttpRequest.getRequestMethod() instead |
static HttpMethod |
HttpMethod.valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static HttpMethod[] |
HttpMethod.values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
HttpRequest |
HttpRequestFactory.buildRequest(HttpMethod method,
GenericUrl url,
HttpContent content)
Deprecated.
(scheduled to be removed in 1.14) Use
HttpRequestFactory.buildRequest(String, GenericUrl, HttpContent) instead |
HttpRequest |
HttpRequest.setMethod(HttpMethod method)
Deprecated.
(scheduled to be removed in 1.14) Use
HttpRequest.setRequestMethod(java.lang.String) instead |
Modifier and Type | Method and Description |
---|---|
HttpMethod |
JsonHttpRequest.getMethod()
Deprecated.
Returns the HTTP Method type.
|
Modifier and Type | Method and Description |
---|---|
protected HttpRequest |
JsonHttpClient.buildHttpRequest(HttpMethod method,
GenericUrl url,
Object body)
Deprecated.
Create an
HttpRequest suitable for use against this service. |
protected InputStream |
JsonHttpClient.executeAsInputStream(HttpMethod method,
GenericUrl url,
Object body)
Deprecated.
Builds and executes an
HttpRequest and then returns the content input stream of
HttpResponse . |
protected HttpResponse |
JsonHttpClient.executeUnparsed(HttpMethod method,
GenericUrl url,
Object body)
Deprecated.
Builds and executes a
HttpRequest . |
Constructor and Description |
---|
JsonHttpRequest(JsonHttpClient client,
HttpMethod method,
String uriTemplate,
Object content)
Deprecated.
Builds an instance of
JsonHttpRequest . |
Copyright © 2011-2012 Google. All Rights Reserved.