From f364b8a391f9597913e7b16bcf8376ecab68eec6 Mon Sep 17 00:00:00 2001 From: Hiram Chirino Date: Wed, 19 Feb 2014 18:24:47 -0500 Subject: [PATCH] Fixes regression caused by the implementation of AMQ-5050 --- .../transport/xstream/XStreamWireFormatFactory.java | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 ebc50ed636..5af61d1c74 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; + } }