Fixes regression caused by the implementation of AMQ-5050

This commit is contained in:
Hiram Chirino 2014-02-19 18:24:47 -05:00
parent 7e56f348bc
commit f364b8a391
1 changed files with 10 additions and 0 deletions

View File

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