packagecom.yidianling.im.session.extension;importcom.alibaba.fastjson.JSONObject;/** * Created by zhoujianghua on 2015/4/10. */publicclassDefaultCustomAttachmentextendsCustomAttachment{privateStringcontent;publicDefaultCustomAttachment(){super(0);}@OverrideprotectedvoidparseData(JSONObjectdata){content=data.toJSONString();}@OverrideprotectedJSONObjectpackData(){JSONObjectdata=null;try{data=JSONObject.parseObject(content);}catch(Exceptione){}returndata;}publicStringgetContent(){returncontent;}}