public static Element clusterElement(String from, String to, StanzaType type) {
Element cluster_el = new Element(CLUSTER_EL_NAME,
new String[] {"from", "to", "type"},
new String[] {from, to, type.toString()});
cluster_el.setXMLNS(XMLNS);
cluster_el.addChild(new Element(CLUSTER_CONTROL_EL_NAME,
new Element[] {new Element(VISITED_NODES_EL_NAME)}, null, null));
return cluster_el;
}
public static Element createClusterElement(String from, String to,