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

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

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

Methods in com.google.api.client.http that return GenericUrl
 GenericUrl GenericUrl.clone()
           
 GenericUrl HttpRequest.getUrl()
          Returns the HTTP request URL.
 

Methods in com.google.api.client.http with parameters of type GenericUrl
 HttpRequest HttpRequestFactory.buildDeleteRequest(GenericUrl url)
          Builds a DELETE request for the given URL.
 HttpRequest HttpRequestFactory.buildGetRequest(GenericUrl url)
          Builds a GET request for the given URL.
 HttpRequest HttpRequestFactory.buildHeadRequest(GenericUrl url)
          Builds a HEAD request for the given URL.
 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.
 HttpRequest HttpRequest.setUrl(GenericUrl url)
          Sets the HTTP request URL.
 

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

Methods in com.google.api.client.http.json that return GenericUrl
 GenericUrl JsonHttpRequest.buildHttpRequestUrl()
          Creates a new instance of GenericUrl suitable for use against this service.
 GenericUrl JsonHttpClient.Builder.getBaseUrl()
          Returns the base URL of the service, for example "https://www.googleapis.com/tasks/v1/".
 

Methods in com.google.api.client.http.json with parameters of type GenericUrl
static JsonHttpClient.Builder JsonHttpClient.builder(HttpTransport transport, JsonFactory jsonFactory, GenericUrl baseUrl)
          Returns an instance of a new builder.
protected  HttpRequest JsonHttpClient.buildHttpRequest(HttpMethod method, GenericUrl url, Object body)
          Create an HttpRequest suitable for use against this service.
protected  HttpResponse JsonHttpClient.executeUnparsed(HttpMethod method, GenericUrl url, Object body)
          Builds and executes a HttpRequest.
 JsonHttpClient.Builder JsonHttpClient.Builder.setBaseUrl(GenericUrl baseUrl)
          Sets the base URL of the service, for example "https://www.googleapis.com/tasks/v1/".
 

Constructors in com.google.api.client.http.json with parameters of type GenericUrl
JsonHttpClient.Builder(HttpTransport transport, JsonFactory jsonFactory, GenericUrl baseUrl)
          Returns an instance of a new builder.
 

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

Fields in com.google.api.client.testing.http declared as GenericUrl
static GenericUrl HttpTesting.SIMPLE_GENERIC_URL
          A simple generic URL for testing of value HttpTesting.SIMPLE_URL.
 



Copyright © 2011-2012 Google. All Rights Reserved.