Uses of Class
com.google.api.client.http.GenericUrl
-
Packages that use GenericUrl 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.testing.http Beta
Testing utilities used for writing tests based on this library. -
-
Uses of GenericUrl in com.google.api.client.http
Fields in com.google.api.client.http declared as GenericUrl Modifier and Type Field Description private GenericUrl
HttpRequest. url
HTTP request URL.Methods in com.google.api.client.http that return GenericUrl Modifier and Type Method Description GenericUrl
GenericUrl. clone()
GenericUrl
HttpRequest. getUrl()
Returns the HTTP request URL.GenericUrl
GenericUrl. set(java.lang.String fieldName, java.lang.Object value)
Methods in com.google.api.client.http with parameters of type GenericUrl Modifier and Type Method Description HttpRequest
HttpRequestFactory. buildDeleteRequest(GenericUrl url)
Builds aDELETE
request for the given URL.HttpRequest
HttpRequestFactory. buildGetRequest(GenericUrl url)
Builds aGET
request for the given URL.HttpRequest
HttpRequestFactory. buildHeadRequest(GenericUrl url)
Builds aHEAD
request for the given URL.HttpRequest
HttpRequestFactory. buildPatchRequest(GenericUrl url, HttpContent content)
Builds aPATCH
request for the given URL and content.HttpRequest
HttpRequestFactory. buildPostRequest(GenericUrl url, HttpContent content)
Builds aPOST
request for the given URL and content.HttpRequest
HttpRequestFactory. buildPutRequest(GenericUrl url, HttpContent content)
Builds aPUT
request for the given URL and content.HttpRequest
HttpRequestFactory. buildRequest(java.lang.String requestMethod, 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.testing.http
Fields in com.google.api.client.testing.http declared as GenericUrl Modifier and Type Field Description static GenericUrl
HttpTesting. SIMPLE_GENERIC_URL
A simple generic URL for testing of valueHttpTesting.SIMPLE_URL
.
-