public void append(Node parent, Long id, String type, String scope, String time) {
   append(parent, id);
   DomUtil.appendTextNode(getDocument(), parent, "type", type);
   DomUtil.appendTextNode(getDocument(), parent, "scope", scope);
   DomUtil.appendTextNode(getDocument(), parent, "time", time);
 }