Searched defs:entityID (Results 1 - 2 of 2) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/packet/
H A DDiscoverItems.java146 private String entityID; field in class:DiscoverItems.Item
154 * @param entityID the id of the entity that contains the item
156 public Item(String entityID) { argument
157 this.entityID = entityID;
166 return entityID;
239 buf.append("<item jid=\"").append(entityID).append("\"");
/external/smack/src/org/jivesoftware/smackx/
H A DServiceDiscoveryManager.java487 * Use null as entityID to query the server
489 * @param entityID the address of the XMPP entity or null.
493 public DiscoverInfo discoverInfo(String entityID) throws XMPPException { argument
494 if (entityID == null)
498 DiscoverInfo info = EntityCapsManager.getDiscoverInfoByUser(entityID);
508 EntityCapsManager.NodeVerHash nvh = EntityCapsManager.getNodeVerHashByJid(entityID);
512 info = discoverInfo(entityID, nvh != null ? nvh.getNodeVer() : null);
531 * @param entityID the address of the XMPP entity.
536 public DiscoverInfo discoverInfo(String entityID, String node) throws XMPPException { argument
540 disco.setTo(entityID);
569 discoverItems(String entityID) argument
583 discoverItems(String entityID, String node) argument
619 canPublishItems(String entityID) argument
647 publishItems(String entityID, DiscoverItems discoverItems) argument
663 publishItems(String entityID, String node, DiscoverItems discoverItems) argument
[all...]

Completed in 83 milliseconds