@Override
 public void readFrom(Unpacker unpckr) throws IOException, MessageTypeException {
   data = MsgPackUtils.unpackString(unpckr);
 }
 @Override
 public void writeTo(Packer packer) throws IOException {
   MsgPackUtils.packString(packer, data);
 }