OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SUBSCRIPTIONS
(Results
1 - 4
of
4
) sorted by null
/external/smack/src/org/jivesoftware/smackx/pubsub/
SubscriptionsExtension.java
29
*
Subscriptions
to the root node
31
* @param subList The list of
subscriptions
35
super(PubSubElementType.
SUBSCRIPTIONS
);
42
*
Subscriptions
to the specified node.
45
* @param subList The list of
subscriptions
49
super(PubSubElementType.
SUBSCRIPTIONS
, nodeId);
56
* Gets the list of
subscriptions
.
58
* @return List of
subscriptions
PubSubElementType.java
46
SUBSCRIPTIONS
("
subscriptions
", PubSubNamespace.BASIC),
PubSubManager.java
202
* Gets the
subscriptions
on the root node.
211
Packet reply = sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.
SUBSCRIPTIONS
));
212
SubscriptionsExtension subElem = (SubscriptionsExtension)reply.getExtension(PubSubElementType.
SUBSCRIPTIONS
.getElementName(), PubSubElementType.
SUBSCRIPTIONS
.getNamespace().getXmlns());
Node.java
135
* Get the
subscriptions
currently associated with this node.
144
PubSub reply = (PubSub)sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.
SUBSCRIPTIONS
, getId()));
145
SubscriptionsExtension subElem = (SubscriptionsExtension)reply.getExtension(PubSubElementType.
SUBSCRIPTIONS
);
198
* work if there is only 1 subscription. If there are multiple
subscriptions
,
226
* Returns a SubscribeForm for
subscriptions
, from which you can create an answer form to be submitted
Completed in 596 milliseconds