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; + } }