Uses of Class
com.google.api.client.json.JsonFactory

Packages that use JsonFactory
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.auth.oauth2.draft10 OAuth 2.0 (draft 10) authorization as specified in The OAuth 2.0 Protocol (draft-ietf-oauth-v2-10) (see detailed package specification). 
com.google.api.client.http.json JSON HTTP library based on the pluggable HTTP library. 
com.google.api.client.json Utilities for JSON as specified in RFC 4627: The application/json Media Type for JavaScript Object Notation (JSON) and Introducing JSON
com.google.api.client.json.gson Low-level implementation of the GSON parser library based on the GSON JSON library. 
com.google.api.client.json.jackson Low-level implementation of the JSON parser library based on the Jackson JSON library. 
com.google.api.client.testing.json Testing utilities used for writing tests based on the JSON package of this library. 
 

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

Fields in com.google.api.client.auth.oauth2 declared as JsonFactory
 JsonFactory AccessTokenRequest.jsonFactory
          Deprecated. (REQUIRED) JSON factory to use for parsing response in AccessTokenRequest.execute().
 

Uses of JsonFactory in com.google.api.client.auth.oauth2.draft10
 

Fields in com.google.api.client.auth.oauth2.draft10 declared as JsonFactory
 JsonFactory AccessTokenRequest.jsonFactory
          (REQUIRED) JSON factory to use for parsing response in AccessTokenRequest.execute().
 

Methods in com.google.api.client.auth.oauth2.draft10 that return JsonFactory
 JsonFactory AccessProtectedResource.getJsonFactory()
          Returns the JSON factory to use for parsing response for refresh token request or null for none.
 

Constructors in com.google.api.client.auth.oauth2.draft10 with parameters of type JsonFactory
AccessProtectedResource(String accessToken, AccessProtectedResource.Method method, HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret, String refreshToken)
          Constructor to use to be able to refresh token when an access token expires.
AccessTokenRequest.AssertionGrant(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientSecret, String assertionType, String assertion)
           
AccessTokenRequest.AuthorizationCodeGrant(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret, String code, String redirectUri)
           
AccessTokenRequest.RefreshTokenGrant(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret, String refreshToken)
           
AccessTokenRequest.ResourceOwnerPasswordCredentialsGrant(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret, String username, String password)
           
AccessTokenRequest(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientSecret)
           
AccessTokenRequest(HttpTransport transport, JsonFactory jsonFactory, String authorizationServerUrl, String clientId, String clientSecret)
           
 

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

Fields in com.google.api.client.http.json declared as JsonFactory
 JsonFactory JsonHttpParser.jsonFactory
          (Required) JSON factory to use.
 JsonFactory JsonHttpContent.jsonFactory
          (Required) JSON factory to use.
 

Methods in com.google.api.client.http.json with parameters of type JsonFactory
static JsonParser JsonHttpParser.parserForResponse(JsonFactory jsonFactory, HttpResponse response)
          Returns a JSON parser to use for parsing the given HTTP response.
 

Uses of JsonFactory in com.google.api.client.json
 

Fields in com.google.api.client.json declared as JsonFactory
 JsonFactory GenericJson.jsonFactory
          JSON factory to use for GenericJson.toString().
 

Methods in com.google.api.client.json that return JsonFactory
abstract  JsonFactory JsonGenerator.getFactory()
          Returns the JSON factory from which this generator was created.
abstract  JsonFactory JsonParser.getFactory()
          Returns the JSON factory from which this generator was created.
 

Uses of JsonFactory in com.google.api.client.json.gson
 

Subclasses of JsonFactory in com.google.api.client.json.gson
 class GsonFactory
          Low-level JSON library implementation based on GSON.
 

Methods in com.google.api.client.json.gson that return JsonFactory
 JsonFactory GsonGenerator.getFactory()
           
 JsonFactory GsonParser.getFactory()
           
 

Uses of JsonFactory in com.google.api.client.json.jackson
 

Subclasses of JsonFactory in com.google.api.client.json.jackson
 class JacksonFactory
          Low-level JSON library implementation based on Jackson.
 

Uses of JsonFactory in com.google.api.client.testing.json
 

Methods in com.google.api.client.testing.json that return JsonFactory
protected abstract  JsonFactory AbstractJsonGeneratorTest.newFactory()
           
protected abstract  JsonFactory AbstractJsonParserTest.newFactory()
           
 



Copyright © 2010-2011 Google. All Rights Reserved.