You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/09/16 09:48:34 UTC

camel git commit: CAMEL-9140: Add documentation

Repository: camel
Updated Branches:
  refs/heads/master d11f34297 -> f53890482


CAMEL-9140: Add documentation


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f5389048
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f5389048
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f5389048

Branch: refs/heads/master
Commit: f538904829a980f218148716f39f8f50797d079e
Parents: d11f342
Author: Claus Ibsen <da...@apache.org>
Authored: Wed Sep 16 09:26:08 2015 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Wed Sep 16 09:26:08 2015 +0200

----------------------------------------------------------------------
 .../config/FacebookEndpointConfiguration.java   | 28 +++++++++++++++++---
 1 file changed, 24 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/f5389048/components/camel-facebook/src/main/java/org/apache/camel/component/facebook/config/FacebookEndpointConfiguration.java
----------------------------------------------------------------------
diff --git a/components/camel-facebook/src/main/java/org/apache/camel/component/facebook/config/FacebookEndpointConfiguration.java b/components/camel-facebook/src/main/java/org/apache/camel/component/facebook/config/FacebookEndpointConfiguration.java
index 261ea8b..83c8b32 100644
--- a/components/camel-facebook/src/main/java/org/apache/camel/component/facebook/config/FacebookEndpointConfiguration.java
+++ b/components/camel-facebook/src/main/java/org/apache/camel/component/facebook/config/FacebookEndpointConfiguration.java
@@ -838,14 +838,13 @@ public class FacebookEndpointConfiguration extends FacebookConfiguration {
         this.videoId = videoId;
     }
 
-    public Boolean getIncludeRead() {
-        return includeRead;
-    }
-
     public Integer getPictureId() {
         return pictureId;
     }
 
+    /**
+     * The picture id
+     */
     public void setPictureId(Integer pictureId) {
         this.pictureId = pictureId;
     }
@@ -854,6 +853,9 @@ public class FacebookEndpointConfiguration extends FacebookConfiguration {
         return pictureId2;
     }
 
+    /**
+     * The picture2 id
+     */
     public void setPictureId2(Integer pictureId2) {
         this.pictureId2 = pictureId2;
     }
@@ -862,6 +864,9 @@ public class FacebookEndpointConfiguration extends FacebookConfiguration {
         return pictureSize;
     }
 
+    /**
+     * The picture size
+     */
     public void setPictureSize(PictureSize pictureSize) {
         this.pictureSize = pictureSize;
     }
@@ -870,6 +875,9 @@ public class FacebookEndpointConfiguration extends FacebookConfiguration {
         return pageId;
     }
 
+    /**
+     * The page id
+     */
     public void setPageId(String pageId) {
         this.pageId = pageId;
     }
@@ -878,6 +886,9 @@ public class FacebookEndpointConfiguration extends FacebookConfiguration {
         return tabId;
     }
 
+    /**
+     * The tab id
+     */
     public void setTabId(String tabId) {
         this.tabId = tabId;
     }
@@ -886,6 +897,9 @@ public class FacebookEndpointConfiguration extends FacebookConfiguration {
         return isHidden;
     }
 
+    /**
+     * Whether hidden
+     */
     public void setIsHidden(Boolean isHidden) {
         this.isHidden = isHidden;
     }
@@ -894,6 +908,9 @@ public class FacebookEndpointConfiguration extends FacebookConfiguration {
         return offerId;
     }
 
+    /**
+     * The offer id
+     */
     public void setOfferId(String offerId) {
         this.offerId = offerId;
     }
@@ -902,6 +919,9 @@ public class FacebookEndpointConfiguration extends FacebookConfiguration {
         return milestoneId;
     }
 
+    /**
+     * The milestone id
+     */
     public void setMilestoneId(String milestoneId) {
         this.milestoneId = milestoneId;
     }