* @param node the name of the node
* @return the generated stanza
*/
public Stanza getStanza(Entity client, Entity pubsub, String id, String node) {
StanzaBuilder stanzaBuilder = StanzaBuilder.createIQStanza(client, pubsub, getStanzaType(), id);
stanzaBuilder.startInnerElement("pubsub", getNamespace());
buildInnerElement(client, pubsub, stanzaBuilder, node);
stanzaBuilder.endInnerElement();