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

Packages that use GenericUrl
com.google.api.client.auth.oauth OAuth 1.0 authorization as specified in RFC 5849: The OAuth 1.0 Protocol (see detailed package specification). 
com.google.api.client.auth.oauth2 OAuth 2.0 authorization as specified in The OAuth 2.0 Protocol (draft-ietf-oauth-v2-10) (see detailed package specification). 
com.google.api.client.http Subset of HTTP 1.1 needed from the specification in RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1
 

Uses of GenericUrl in com.google.api.client.auth.oauth
 

Subclasses of GenericUrl in com.google.api.client.auth.oauth
 class AbstractOAuthGetToken
          Generic OAuth 1.0a URL to request a temporary or long-lived token from an authorization server.
 class OAuthAuthorizeTemporaryTokenUrl
          OAuth 1.0a URL builder for an authorization web page to allow the end user to authorize the temporary token.
 class OAuthCallbackUrl
          Generic URL that parses the callback URL after a temporary token has been authorized by the end user.
 class OAuthGetAccessToken
          Generic OAuth 1.0a URL to request to exchange the temporary credentials token (or "request token") for a long-lived credentials token (or "access token") from an authorization server.
 class OAuthGetTemporaryToken
          Generic OAuth 1.0a URL to request a temporary credentials token (or "request token") from an authorization server.
 

Methods in com.google.api.client.auth.oauth with parameters of type GenericUrl
 void OAuthParameters.computeSignature(String requestMethod, GenericUrl requestUrl)
          Computes a new signature based on the fields and the given request method and URL, setting the values of the OAuthParameters.signature and OAuthParameters.signatureMethod fields.
 

Uses of GenericUrl in com.google.api.client.auth.oauth2
 

Subclasses of GenericUrl in com.google.api.client.auth.oauth2
 class AuthorizationRequestUrl
          Deprecated. (scheduled to be removed in 1.5) Use AuthorizationRequestUrl
 

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

Fields in com.google.api.client.http declared as GenericUrl
 GenericUrl HttpRequest.url
          HTTP request URL.
 

Methods in com.google.api.client.http that return GenericUrl
 GenericUrl GenericUrl.clone()
           
 

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.
 



Copyright © 2010-2011 Google. All Rights Reserved.