org.apache.camel.component.gae.auth
Interface GAuthService


public interface GAuthService

Interface to Google's OAuth services.


Method Summary
 void getAccessToken(com.google.gdata.client.authn.oauth.OAuthParameters oauthParameters)
          Gets an access token from Google.
 void getUnauthorizedRequestToken(com.google.gdata.client.authn.oauth.OAuthParameters oauthParameters)
          Gets an unauthorized request token from Google.
 

Method Detail

getUnauthorizedRequestToken

void getUnauthorizedRequestToken(com.google.gdata.client.authn.oauth.OAuthParameters oauthParameters)
                                 throws Exception
Gets an unauthorized request token from Google.

Parameters:
oauthParameters - value object for providing input data and storing result data (unauthorized request token).
Throws:
Exception

getAccessToken

void getAccessToken(com.google.gdata.client.authn.oauth.OAuthParameters oauthParameters)
                    throws Exception
Gets an access token from Google.

Parameters:
oauthParameters - value object for providing input data (authorized request token) and storing result data (access token).
Throws:
Exception


Apache Camel