mirror of https://github.com/apache/activemq.git
Fixes regression caused by the implementation of AMQ-5050
This commit is contained in:
parent
7e56f348bc
commit
f364b8a391
|
@ -25,8 +25,18 @@ import org.apache.activemq.wireformat.WireFormatFactory;
|
||||||
*/
|
*/
|
||||||
public class XStreamWireFormatFactory implements WireFormatFactory {
|
public class XStreamWireFormatFactory implements WireFormatFactory {
|
||||||
|
|
||||||
|
String host;
|
||||||
|
|
||||||
public WireFormat createWireFormat() {
|
public WireFormat createWireFormat() {
|
||||||
return new XStreamWireFormat();
|
return new XStreamWireFormat();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public String getHost() {
|
||||||
|
return host;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setHost(String host) {
|
||||||
|
this.host = host;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue