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

  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
AgentRoster.java 57 private Map<String, Map<String, Presence>> presenceMap;
72 presenceMap = new HashMap<String, Map<String, Presence>>();
116 Map<String,Presence> userPresences = presenceMap.get(jid);
200 Map<String, Presence> userPresences = presenceMap.get(key);
236 * Returns the key to use in the presenceMap for a fully qualified xmpp ID. The roster
239 * xmpp ID then use the fully qualified xmpp ID as the key in presenceMap, otherwise use the
240 * bare address. Note: When the key in presenceMap is a fully qualified xmpp ID, the
244 * @return the key to use in the presenceMap for the fully qualified xmpp ID.
308 if (presenceMap.get(key) == null) {
310 presenceMap.put(key, userPresences);
    [all...]
  /external/smack/src/org/jivesoftware/smack/
Roster.java 64 private Map<String, Map<String, Presence>> presenceMap;
118 presenceMap = new ConcurrentHashMap<String, Map<String, Presence>>();
342 presenceMap.remove(key);
609 Map<String, Presence> userPresences = presenceMap.get(key);
669 Map<String, Presence> userPresences = presenceMap.get(key);
701 Map<String, Presence> userPresences = presenceMap.get(key);
733 * Returns the key to use in the presenceMap for a fully qualified XMPP ID.
737 * ID as the key in presenceMap, otherwise use the bare address. Note: When the
738 * key in presenceMap is a fully qualified XMPP ID, the userPresences is useless
743 * @return the key to use in the presenceMap for the fully qualified XMPP ID
    [all...]

Completed in 57 milliseconds