Skip to content

Instantly share code, notes, and snippets.

@marianogonzalez
Created October 3, 2012 19:03
Show Gist options
  • Save marianogonzalez/3829057 to your computer and use it in GitHub Desktop.
Save marianogonzalez/3829057 to your computer and use it in GitHub Desktop.
public class GoogleCalendarConnectorOAuthState implements Serializable
{
public String accessToken;
public String authorizationUrl;
public String accessTokenUrl;
public String refreshToken;
/**
* Retrieves accessToken
*
*/
public String getAccessToken() {
return this.accessToken;
}
/**
* Sets accessToken
*
* @param value Value to set
*/
public void setAccessToken(String value) {
this.accessToken = value;
}
/**
* Retrieves authorizationUrl
*
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* Sets authorizationUrl
*
* @param value Value to set
*/
public void setAuthorizationUrl(String value) {
this.authorizationUrl = value;
}
/**
* Retrieves accessTokenUrl
*
*/
public String getAccessTokenUrl() {
return this.accessTokenUrl;
}
/**
* Sets accessTokenUrl
*
* @param value Value to set
*/
public void setAccessTokenUrl(String value) {
this.accessTokenUrl = value;
}
/**
* Retrieves refreshToken
*
*/
public String getRefreshToken() {
return this.refreshToken;
}
/**
* Sets refreshToken
*
* @param value Value to set
*/
public void setRefreshToken(String value) {
this.refreshToken = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment