This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 05bcdcd Updated parameter descriptions. (#2723) 05bcdcd is described below commit 05bcdcd11196489f4cb52cde2e4480b6e1b7ac52 Author: TovaCohen <tco...@redhat.com> AuthorDate: Sun Jan 20 13:11:48 2019 -0500 Updated parameter descriptions. (#2723) --- .../camel/component/linkedin/LinkedInConfiguration.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/components/camel-linkedin/camel-linkedin-component/src/main/java/org/apache/camel/component/linkedin/LinkedInConfiguration.java b/components/camel-linkedin/camel-linkedin-component/src/main/java/org/apache/camel/component/linkedin/LinkedInConfiguration.java index 126b591..322ff4b 100644 --- a/components/camel-linkedin/camel-linkedin-component/src/main/java/org/apache/camel/component/linkedin/LinkedInConfiguration.java +++ b/components/camel-linkedin/camel-linkedin-component/src/main/java/org/apache/camel/component/linkedin/LinkedInConfiguration.java @@ -152,7 +152,8 @@ public class LinkedInConfiguration { } /** - * LinkedIn access token expiry time in milliseconds since Unix Epoch, default is 60 days in the future. + * A number of milliseconds since the UNIX Epoch. The default is 60 days. + * A LinkedIn access token expires when this amount of time elapses after the token is in use. */ public void setExpiryTime(Long expiryTime) { this.expiryTime = expiryTime; @@ -161,7 +162,7 @@ public class LinkedInConfiguration { /** * Callback interface for providing an OAuth token or to store the token generated by the component. * The callback should return null on the first call and then save the created token in the saveToken() callback. - * If the callback returns null the first time, a userPassword MUST be provided + * If the callback returns null the first time, a userPassword MUST be provided. */ public void setSecureStorage(OAuthSecureStorage secureStorage) { this.secureStorage = secureStorage; @@ -206,7 +207,7 @@ public class LinkedInConfiguration { /** * Application redirect URI, although the component never redirects to this page to avoid having to have a functioning redirect server. - * So for testing one could use https://localhost + * For testing, one could use https://localhost. */ public void setRedirectUri(String redirectUri) { this.redirectUri = redirectUri; @@ -217,7 +218,7 @@ public class LinkedInConfiguration { } /** - * Custom HTTP params, for example proxy host and port, use constants from AllClientPNames + * Custom HTTP parameters, for example, proxy host and port. Use constants from AllClientPNames. */ public void setHttpParams(Map<String, Object> httpParams) { this.httpParams = httpParams; @@ -228,7 +229,7 @@ public class LinkedInConfiguration { } /** - * Flag to enable/disable lazy OAuth, default is true. when enabled, OAuth token retrieval or generation is not done until the first REST call + * Flag to enable/disable lazy OAuth, default is true. When enabled, OAuth token retrieval or generation is not done until the first REST call. */ public void setLazyAuth(boolean lazyAuth) { this.lazyAuth = lazyAuth;