Repository: activemq Updated Branches: refs/heads/trunk 7e56f348b -> f364b8a39
Fixes regression caused by the implementation of AMQ-5050 Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/f364b8a3 Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/f364b8a3 Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/f364b8a3 Branch: refs/heads/trunk Commit: f364b8a391f9597913e7b16bcf8376ecab68eec6 Parents: 7e56f34 Author: Hiram Chirino <[email protected]> Authored: Wed Feb 19 18:24:47 2014 -0500 Committer: Hiram Chirino <[email protected]> Committed: Wed Feb 19 18:24:47 2014 -0500 ---------------------------------------------------------------------- .../transport/xstream/XStreamWireFormatFactory.java | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/f364b8a3/activemq-http/src/main/java/org/apache/activemq/transport/xstream/XStreamWireFormatFactory.java ---------------------------------------------------------------------- diff --git a/activemq-http/src/main/java/org/apache/activemq/transport/xstream/XStreamWireFormatFactory.java b/activemq-http/src/main/java/org/apache/activemq/transport/xstream/XStreamWireFormatFactory.java index ebc50ed..5af61d1 100644 --- a/activemq-http/src/main/java/org/apache/activemq/transport/xstream/XStreamWireFormatFactory.java +++ b/activemq-http/src/main/java/org/apache/activemq/transport/xstream/XStreamWireFormatFactory.java @@ -25,8 +25,18 @@ import org.apache.activemq.wireformat.WireFormatFactory; */ public class XStreamWireFormatFactory implements WireFormatFactory { + String host; + public WireFormat createWireFormat() { return new XStreamWireFormat(); } + + public String getHost() { + return host; + } + + public void setHost(String host) { + this.host = host; + } }
