1 18 package org.apache.activemq.openwire; 19 20 import java.io.IOException ; 21 22 import org.apache.activemq.command.WireFormatInfo; 23 24 public class WireFormatInfoData extends DataFileGenerator { 25 26 protected Object createObject() throws IOException { 27 WireFormatInfo rc = new WireFormatInfo(); 28 rc.setResponseRequired(false); 29 rc.setCacheEnabled(true); 30 rc.setVersion(1); 31 return rc; 32 } 33 34 } 35 | Popular Tags |