forgot setter on configurtion bean

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

Branch: refs/heads/master
Commit: 22b15b613cb7e958fbb7a7d17d90864080450328
Parents: 45caf58
Author: David Vilaverde <[email protected]>
Authored: Wed May 27 20:10:00 2015 -0400
Committer: Claus Ibsen <[email protected]>
Committed: Thu May 28 09:07:17 2015 +0200

----------------------------------------------------------------------
 .../org/apache/camel/component/stomp/StompConfiguration.java     | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/22b15b61/components/camel-stomp/src/main/java/org/apache/camel/component/stomp/StompConfiguration.java
----------------------------------------------------------------------
diff --git 
a/components/camel-stomp/src/main/java/org/apache/camel/component/stomp/StompConfiguration.java
 
b/components/camel-stomp/src/main/java/org/apache/camel/component/stomp/StompConfiguration.java
index 58279d4..03cdd23 100644
--- 
a/components/camel-stomp/src/main/java/org/apache/camel/component/stomp/StompConfiguration.java
+++ 
b/components/camel-stomp/src/main/java/org/apache/camel/component/stomp/StompConfiguration.java
@@ -52,6 +52,10 @@ public class StompConfiguration implements Cloneable {
     public String getHost() {
         return host;
     }
+    
+    public void setHost(String host) {
+        this.host = host;
+    }
 
     /**
      * The URI of the Stomp broker to connect to

Reply via email to