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

  /external/smack/src/org/jivesoftware/smackx/pubsub/provider/
AffiliationProvider.java 21 import org.jivesoftware.smackx.pubsub.Affiliation;
24 * Parses the affiliation element out of the reply stanza from the server
25 * as specified in the <a href="http://xmpp.org/extensions/xep-0060.html#schemas-pubsub">affiliation schema</a>.
34 return new Affiliation(attributeMap.get("jid"), attributeMap.get("node"), Affiliation.Type.valueOf(attributeMap.get("affiliation")));
AffiliationsProvider.java 22 import org.jivesoftware.smackx.pubsub.Affiliation;
27 * as specified in the <a href="http://xmpp.org/extensions/xep-0060.html#schemas-pubsub">affiliation schema</a>.
35 return new AffiliationsExtension(attributeMap.get("node"), (List<Affiliation>)content);
  /external/smack/src/org/jivesoftware/smackx/pubsub/
AffiliationsExtension.java 27 protected List<Affiliation> items = Collections.EMPTY_LIST;
34 public AffiliationsExtension(List<Affiliation> affiliationList)
48 public AffiliationsExtension(String nodeId, List<Affiliation> affiliationList)
56 public List<Affiliation> getAffiliations()
80 for (Affiliation item : items)
Affiliation.java 20 * Represents a affiliation between a user and a node, where the {@link #type} defines
21 * the type of affiliation.
29 public class Affiliation implements PacketExtension
41 * Constructs an affiliation.
43 * @param jid The JID with affiliation.
44 * @param affiliation The type of affiliation.
46 public Affiliation(String jid, Type affiliation)
48 this(jid, null, affiliation);
    [all...]
PubSubManager.java 223 public List<Affiliation> getAffiliations()

Completed in 1893 milliseconds