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/11/28 16:53:25 UTC

camel git commit: Component docs

Repository: camel
Updated Branches:
  refs/heads/camel-2.16.x ba901a9cd -> c8dd8419c


Component docs


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

Branch: refs/heads/camel-2.16.x
Commit: c8dd8419c1ac2000acd890d900e74cec76a3aae7
Parents: ba901a9
Author: Claus Ibsen <da...@apache.org>
Authored: Sat Nov 28 16:50:54 2015 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Sat Nov 28 16:52:56 2015 +0100

----------------------------------------------------------------------
 .../component/twitter/TwitterConfiguration.java | 44 ++++++++++----------
 1 file changed, 22 insertions(+), 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/c8dd8419/components/camel-twitter/src/main/java/org/apache/camel/component/twitter/TwitterConfiguration.java
----------------------------------------------------------------------
diff --git a/components/camel-twitter/src/main/java/org/apache/camel/component/twitter/TwitterConfiguration.java b/components/camel-twitter/src/main/java/org/apache/camel/component/twitter/TwitterConfiguration.java
index c1184d5..5cfee43 100644
--- a/components/camel-twitter/src/main/java/org/apache/camel/component/twitter/TwitterConfiguration.java
+++ b/components/camel-twitter/src/main/java/org/apache/camel/component/twitter/TwitterConfiguration.java
@@ -34,48 +34,48 @@ public class TwitterConfiguration {
     @UriPath(description = "What kind of type to use") @Metadata(required = "true")
     private EndpointType type = EndpointType.DIRECT;
     @UriParam
+    private String accessToken;
+    @UriParam
+    private String accessTokenSecret;
+    @UriParam
     private String consumerKey;
     @UriParam
     private String consumerSecret;
     @UriParam
-    private String accessToken;
-    @UriParam
-    private String accessTokenSecret;
+    private String user;
     @UriParam(label = "consumer", defaultValue = "60")
     private int delay = 60;
-    @UriParam
-    private String user;
-    @UriParam
+    @UriParam(label = "filter")
     private String keywords;
-    @UriParam(label = "consumer")
-    private String locations;
-    @UriParam(label = "consumer")
+    @UriParam(label = "filter")
     private String userIds;
-    @UriParam(defaultValue = "true")
+    @UriParam(label = "filter", defaultValue = "true")
     private boolean filterOld = true;
-    @UriParam(label = "consumer", defaultValue = "1")
+    @UriParam(label = "filter", defaultValue = "1")
     private long sinceId  = 1;
-    @UriParam
+    @UriParam(label = "filter")
     private String lang;
-    @UriParam
+    @UriParam(label = "filter")
     private Integer count;
-    @UriParam(defaultValue = "1")
+    @UriParam(label = "filter", defaultValue = "1")
     private Integer numberOfPages = 1;
-    @UriParam
+    @UriParam(label = "proxy")
     private String httpProxyHost;
-    @UriParam
+    @UriParam(label = "proxy")
     private String httpProxyUser;
-    @UriParam
+    @UriParam(label = "proxy")
     private String httpProxyPassword;
-    @UriParam
+    @UriParam(label = "proxy")
     private Integer httpProxyPort;
-    @UriParam(label = "consumer")
+    @UriParam(label = "consumer,advanced")
+    private String locations;
+    @UriParam(label = "consumer,advanced")
     private Double latitude;
-    @UriParam(label = "consumer")
+    @UriParam(label = "consumer,advanced")
     private Double longitude;
-    @UriParam(label = "consumer")
+    @UriParam(label = "consumer,advanced")
     private Double radius;
-    @UriParam(label = "consumer", defaultValue = "km", enums = "mi,km")
+    @UriParam(label = "consumer,advanced", defaultValue = "km", enums = "km,mi")
     private String distanceMetric;
 
     /**