Repository: camel Updated Branches: refs/heads/master bd36f6245 -> ab224018b
Component docs Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/7ab56644 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/7ab56644 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/7ab56644 Branch: refs/heads/master Commit: 7ab56644d07040d3ec8d10df9e32b485c2688525 Parents: bd36f62 Author: Claus Ibsen <[email protected]> Authored: Tue Jun 2 08:52:34 2015 +0200 Committer: Claus Ibsen <[email protected]> Committed: Tue Jun 2 08:52:34 2015 +0200 ---------------------------------------------------------------------- .../calendar/GoogleCalendarConfiguration.java | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/7ab56644/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/GoogleCalendarConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/GoogleCalendarConfiguration.java b/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/GoogleCalendarConfiguration.java index ac04cba..80ba96b 100644 --- a/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/GoogleCalendarConfiguration.java +++ b/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/GoogleCalendarConfiguration.java @@ -70,7 +70,6 @@ public class GoogleCalendarConfiguration { /** * What kind of operation to perform - * @param apiName */ public void setApiName(GoogleCalendarApiName apiName) { this.apiName = apiName; @@ -82,7 +81,6 @@ public class GoogleCalendarConfiguration { /** * What sub operation to use for the selected operation - * @param methodName */ public void setMethodName(String methodName) { this.methodName = methodName; @@ -94,7 +92,6 @@ public class GoogleCalendarConfiguration { /** * Client ID of the calendar application - * @param clientId */ public void setClientId(String clientId) { this.clientId = clientId; @@ -104,19 +101,19 @@ public class GoogleCalendarConfiguration { return emailAddress; } + /** + * The emailAddress of the Google Service Account. + */ public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } - - public String getClientSecret() { return clientSecret; } /** * Client secret of the calendar application - * @param clientSecret */ public void setClientSecret(String clientSecret) { this.clientSecret = clientSecret; @@ -128,7 +125,6 @@ public class GoogleCalendarConfiguration { /** * OAuth 2 access token. This typically expires after an hour so refreshToken is recommended for long term usage. - * @param accessToken */ public void setAccessToken(String accessToken) { this.accessToken = accessToken; @@ -140,7 +136,6 @@ public class GoogleCalendarConfiguration { /** * OAuth 2 refresh token. Using this, the Google Calendar component can obtain a new accessToken whenever the current one expires - a necessity if the application is long-lived. - * @param refreshToken */ public void setRefreshToken(String refreshToken) { this.refreshToken = refreshToken; @@ -152,7 +147,6 @@ public class GoogleCalendarConfiguration { /** * Google calendar application name. Example would be "camel-google-calendar/1.0" - * @param applicationName */ public void setApplicationName(String applicationName) { this.applicationName = applicationName; @@ -164,7 +158,6 @@ public class GoogleCalendarConfiguration { /** * Specifies the level of permissions you want a calendar application to have to a user account. See https://developers.google.com/google-apps/calendar/auth for more info. - * @param scopes */ public void setScopes(List<String> scopes) { this.scopes = scopes; @@ -174,6 +167,9 @@ public class GoogleCalendarConfiguration { return p12FileName; } + /** + * The name of the p12 file which has the private key to use with the Google Service Account. + */ public void setP12FileName(String p12FileName) { this.p12FileName = p12FileName; }
