HomeSort by relevance Sort by last modified time
    Searched refs:PubSub (Results 1 - 5 of 5) sorted by null

  /external/smack/src/org/jivesoftware/smackx/pubsub/
LeafNode.java 14 package org.jivesoftware.smackx.pubsub;
24 import org.jivesoftware.smackx.pubsub.packet.PubSub;
25 import org.jivesoftware.smackx.pubsub.packet.SyncPacketSend;
28 * The main class for the majority of pubsub functionality. In general
29 * almost all pubsub capabilities are related to the concept of a node.
69 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId()));
71 PubSub result = (PubSub)SyncPacketSend.getReply(con, request);
90 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), subscriptionId));
    [all...]
PubSubManager.java 14 package org.jivesoftware.smackx.pubsub;
30 import org.jivesoftware.smackx.pubsub.packet.PubSub;
31 import org.jivesoftware.smackx.pubsub.packet.PubSubNamespace;
32 import org.jivesoftware.smackx.pubsub.packet.SyncPacketSend;
33 import org.jivesoftware.smackx.pubsub.util.NodeUtils;
36 * This is the starting point for access to the pubsub service. It
38 * well as create or retrieve pubsub {@link LeafNode} instances. These
40 * pubsub specification <a href="http://xmpp.org/extensions/xep-0060.html">XEP-0060</a>.
51 * Create a pubsub manager associated to the specified connection. Defaults the service
    [all...]
Node.java 20 package org.jivesoftware.smackx.pubsub;
42 import org.jivesoftware.smackx.pubsub.listener.ItemDeleteListener;
43 import org.jivesoftware.smackx.pubsub.listener.ItemEventListener;
44 import org.jivesoftware.smackx.pubsub.listener.NodeConfigListener;
45 import org.jivesoftware.smackx.pubsub.packet.PubSub;
46 import org.jivesoftware.smackx.pubsub.packet.PubSubNamespace;
47 import org.jivesoftware.smackx.pubsub.packet.SyncPacketSend;
48 import org.jivesoftware.smackx.pubsub.util.NodeUtils;
77 * For example, OpenFire requires the server to be prefixed by <b>pubsub</b>
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/provider/
PubSubProvider.java 14 package org.jivesoftware.smackx.pubsub.provider;
20 import org.jivesoftware.smackx.pubsub.packet.PubSub;
21 import org.jivesoftware.smackx.pubsub.packet.PubSubNamespace;
25 * Parses the root pubsub packet extensions of the {@link IQ} packet and returns
26 * a {@link PubSub} instance.
34 PubSub pubsub = new PubSub(); local
36 pubsub.setPubSubNamespace(PubSubNamespace.valueOfFromXmlns(namespace));
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/packet/
PubSub.java 14 package org.jivesoftware.smackx.pubsub.packet;
18 import org.jivesoftware.smackx.pubsub.PubSubElementType;
21 * The standard PubSub extension of an {@link IQ} packet. This is the topmost
22 * element of all pubsub requests and replies as defined in the <a href="http://xmpp.org/extensions/xep-0060">Publish-Subscribe</a>
27 public class PubSub extends IQ
37 return "pubsub";
43 * http://jabber.org/protocol/pubsub with a specific fragment depending
83 * Returns the XML representation of a pubsub element according the specification.
88 * &lt;iq type='set' id="MlIpV-4" to="pubsub.gato.home" from="gato3@gato.home/Smack"&gt;
89 * &lt;pubsub xmlns="http://jabber.org/protocol/pubsub"&gt;
    [all...]

Completed in 69 milliseconds