Repository: camel Updated Branches: refs/heads/master 00ce109d5 -> ccdd8b5de
Component docs Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/ccdd8b5d Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/ccdd8b5d Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/ccdd8b5d Branch: refs/heads/master Commit: ccdd8b5de802852579e971d5d4c47c9e666d64d5 Parents: 00ce109 Author: Claus Ibsen <davscl...@apache.org> Authored: Sat Nov 28 16:50:54 2015 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Sat Nov 28 16:53:51 2015 +0100 ---------------------------------------------------------------------- .../component/twitter/TwitterConfiguration.java | 44 ++++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/ccdd8b5d/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; /**