Repository: camel
Updated Branches:
  refs/heads/camel-2.15.x 594e11a49 -> 9cb4de7fb
  refs/heads/camel-2.16.x 3c613a666 -> 9e9ff70d3
  refs/heads/master c07f0cb93 -> 79f61e3dd


CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to 
access the openweathermap service


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

Branch: refs/heads/master
Commit: 79f61e3dd3b9484473f01aa67d16a818a5a04d91
Parents: c07f0cb
Author: Claus Ibsen <davscl...@apache.org>
Authored: Fri Oct 30 07:45:41 2015 +0100
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Fri Oct 30 07:45:41 2015 +0100

----------------------------------------------------------------------
 .../org/apache/camel/component/weather/WeatherConfiguration.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/79f61e3d/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
----------------------------------------------------------------------
diff --git 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
index e0c87d6..c079552 100644
--- 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
+++ 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
@@ -38,6 +38,8 @@ public class WeatherConfiguration {
 
     @UriPath(description = "The name value is not used.") @Metadata(required = 
"true")
     private String name;
+    @UriParam @Metadata(required = "true")
+    private String appid;
     @UriParam
     private String location = "";
     @UriParam
@@ -52,8 +54,6 @@ public class WeatherConfiguration {
     private WeatherUnits units = METRIC;
     @UriParam
     private String headerName;
-    @UriParam
-    private String appid;
 
     public WeatherConfiguration(WeatherComponent component) {
         this.component = notNull(component, "component");

Reply via email to