* Callback from xmlBlaster core
*/
public String update(String cbSessionId, UpdateKey updateKey, byte[] content, UpdateQos updateQos) {
if (!this.cbSessionId.equals(cbSessionId)) {
log.warning("The given cbSessionId=" + cbSessionId + " is unknown, we don't trust this callback of a status message with oid=" + updateKey.getOid());
UpdateReturnQos q = new UpdateReturnQos(glob);
q.setState("ERROR");
q.setStateInfo("Callback access denied");
return q.toXml();
}
if (updateKey.isInternal()) return "";
if (updateQos.isErased()) return "";