com.google.gdata.client.finance
Class FinanceService

java.lang.Object
  extended by com.google.gdata.client.Service
      extended by com.google.gdata.client.GoogleService
          extended by com.google.gdata.client.finance.FinanceService
All Implemented Interfaces:
AuthTokenFactory.TokenListener

public class FinanceService
extends GoogleService

Extends the basic GoogleService abstraction to define a service that is preconfigured for access to the Google Finance data API.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.gdata.client.GoogleService
GoogleService.AccountDeletedException, GoogleService.AccountDisabledException, GoogleService.CaptchaRequiredException, GoogleService.InvalidCredentialsException, GoogleService.NotVerifiedException, GoogleService.ServiceUnavailableException, GoogleService.SessionExpiredException, GoogleService.TermsNotAgreedException
 
Nested classes/interfaces inherited from class com.google.gdata.client.Service
Service.GDataRequest, Service.GDataRequestFactory, Service.Versions
 
Field Summary
static java.lang.String FINANCE_SERVICE
          The abbreviated name of Google Finance recognized by Google.
static java.lang.String FINANCE_SERVICE_VERSION
          The version ID of the service.
 
Fields inherited from class com.google.gdata.client.Service
connectTimeout, extProfile, requestFactory
 
Constructor Summary
FinanceService(java.lang.String applicationName)
          Constructs an instance connecting to the Google Finance service for an application with the name applicationName.
FinanceService(java.lang.String applicationName, Service.GDataRequestFactory requestFactory, AuthTokenFactory authTokenFactory)
          Constructs an instance connecting to the Google Finance service for an application with the name applicationName and the given GDataRequestFactory and AuthTokenFactory.
FinanceService(java.lang.String applicationName, java.lang.String protocol, java.lang.String domainName)
          Constructs an instance connecting to the Google Finance service with name serviceName for an application with the name applicationName.
 
Method Summary
 java.lang.String getServiceVersion()
          Returns information about the service version.
 
Methods inherited from class com.google.gdata.client.GoogleService
addCookie, createRequest, createRequest, delete, delete, getAuthToken, getAuthTokenFactory, getCookieManager, getCookies, getEntry, getEntry, getFeed, getFeed, getFeed, getFeed, handleRedirectException, handlesCookies, handleSessionExpiredException, insert, makePostRequest, setAuthSubToken, setAuthSubToken, setAuthTokenFactory, setCookieManager, setHandlesCookies, setOAuthCredentials, setUserCredentials, setUserCredentials, setUserToken, tokenChanged, update
 
Methods inherited from class com.google.gdata.client.Service
batch, closeSource, createBatchRequest, createDeleteRequest, createEntryRequest, createFeedRequest, createFeedRequest, createInsertRequest, createUpdateRequest, delete, delete, endVersionScope, getContentType, getEntry, getExtensionProfile, getFeed, getFeed, getProtocolVersion, getRequestFactory, getStreamFromLink, getVersion, initServiceVersion, introspect, parseEntry, query, query, query, setAcceptLanguage, setConnectTimeout, setContentType, setExtensionProfile, setProtocolVersion, setReadTimeout, setRequestFactory, setTimeouts, startVersionScope, update, useSsl
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FINANCE_SERVICE

public static final java.lang.String FINANCE_SERVICE
The abbreviated name of Google Finance recognized by Google. The service name is used when requesting an authentication token.

See Also:
Constant Field Values

FINANCE_SERVICE_VERSION

public static final java.lang.String FINANCE_SERVICE_VERSION
The version ID of the service.

Constructor Detail

FinanceService

public FinanceService(java.lang.String applicationName)
Constructs an instance connecting to the Google Finance service for an application with the name applicationName.

Parameters:
applicationName - the name of the client application accessing the service. Application names should preferably have the format [company-id]-[app-name]-[app-version]. The name will be used by the Google servers to monitor the source of authentication.

FinanceService

public FinanceService(java.lang.String applicationName,
                      Service.GDataRequestFactory requestFactory,
                      AuthTokenFactory authTokenFactory)
Constructs an instance connecting to the Google Finance service for an application with the name applicationName and the given GDataRequestFactory and AuthTokenFactory. Use this constructor to override the default factories.

Parameters:
applicationName - the name of the client application accessing the service. Application names should preferably have the format [company-id]-[app-name]-[app-version]. The name will be used by the Google servers to monitor the source of authentication.
requestFactory - the request factory that generates gdata request objects
authTokenFactory - the factory that creates auth tokens

FinanceService

public FinanceService(java.lang.String applicationName,
                      java.lang.String protocol,
                      java.lang.String domainName)
Constructs an instance connecting to the Google Finance service with name serviceName for an application with the name applicationName. The service will authenticate at the provided domainName.

Parameters:
applicationName - the name of the client application accessing the service. Application names should preferably have the format [company-id]-[app-name]-[app-version]. The name will be used by the Google servers to monitor the source of authentication.
protocol - name of protocol to use for authentication ("http"/"https")
domainName - the name of the domain hosting the login handler
Method Detail

getServiceVersion

public java.lang.String getServiceVersion()
Description copied from class: Service
Returns information about the service version.

Overrides:
getServiceVersion in class Service