sb.append("/>");
return sb.toString();
}
public XBRef getRef() {
XBRef ref = super.getRef();
Map map = new HashMap/*<String, String>*/();
map.put(XBRef.KEY_OID, keyOid);
map.put(XBRef.MSG_WRAPPER_ID, "" + msgUnitWrapperUniqueId);
map.put(XBRef.RECEIVER_STR, receiver.getAbsoluteName());
map.put(XBRef.SUB_ID, subscriptionId);
map.put(XBRef.FLAG, flag);
map.put(XBRef.REDELIVER_COUNTER, "" + redeliverCounter);
ref.setMetaInfo(StringPairTokenizer.mapToCSV(map));
ref.setMeatId(msgUnitWrapperUniqueId);
return ref;
}