Searched refs:createPubsubPacket (Results 1 - 3 of 3) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DLeafNode.java69 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId()));
90 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), subscriptionId));
119 PubSub request = createPubsubPacket(Type.GET, new ItemsExtension(ItemsExtension.ItemsElementType.items, getId(), itemList));
138 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), maxItems));
160 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), subscriptionId, maxItems));
181 PubSub packet = createPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.PUBLISH, getId()));
223 PubSub packet = createPubsubPacket(Type.SET, new PublishItem<T>(getId(), items));
245 PubSub packet = createPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.PUBLISH, getId()));
297 PubSub packet = createPubsubPacket(Type.SET, new PublishItem<T>(getId(), items));
313 PubSub request = createPubsubPacket(Typ
[all...]
H A DPubSubManager.java122 PubSub request = createPubsubPacket(to, Type.SET, new NodeExtension(PubSubElementType.CREATE, name));
285 static PubSub createPubsubPacket(String to, Type type, PacketExtension ext) method in class:PubSubManager
287 return createPubsubPacket(to, type, ext, null);
290 static PubSub createPubsubPacket(String to, Type type, PacketExtension ext, PubSubNamespace ns) method in class:PubSubManager
314 return SyncPacketSend.getReply(con, createPubsubPacket(to, type, ext, ns));
H A DNode.java114 PubSub packet = createPubsubPacket(Type.SET, new FormNode(FormNodeType.CONFIGURE_OWNER, getId(), submitForm), PubSubNamespace.OWNER);
190 PubSub request = createPubsubPacket(Type.SET, new SubscribeExtension(jid, getId()));
346 protected PubSub createPubsubPacket(Type type, PacketExtension ext) method in class:Node
348 return createPubsubPacket(type, ext, null);
351 protected PubSub createPubsubPacket(Type type, PacketExtension ext, PubSubNamespace ns) method in class:Node
353 return PubSubManager.createPubsubPacket(to, type, ext, ns);

Completed in 46 milliseconds