1 18 package org.apache.activemq.kaha; 19 20 import java.io.DataInput ; 21 import java.io.DataOutput ; 22 import java.io.IOException ; 23 28 public class StringMarshaller implements Marshaller<String > { 29 36 public void writePayload(String object,DataOutput dataOut) throws IOException { 37 dataOut.writeUTF(object); 38 } 39 40 47 public String readPayload(DataInput dataIn) throws IOException { 48 return dataIn.readUTF(); 49 } 50 } 51 | Popular Tags |