Lines Matching defs:info
246 // Listen for disco#info requests and answer the client's supported features
267 // Disco#info was sent to a node. Check if we have information of the
293 * Add discover info response data.
295 * @see <a href="http://xmpp.org/extensions/xep-0030.html#info-basic">XEP-30 Basic Protocol; Example 2</a>
297 * @param response the discover info response packet
436 * configure the extended info before logging to the server so that the
439 * @param info
443 public void setExtendedInfo(DataForm info) {
444 extendedInfo = info;
498 DiscoverInfo info = EntityCapsManager.getDiscoverInfoByUser(entityID);
500 if (info != null) {
503 return info;
512 info = discoverInfo(entityID, nvh != null ? nvh.getNodeVer() : null);
516 if (EntityCapsManager.verifyDiscoverInfoVersion(nvh.getVer(), nvh.getHash(), info))
517 EntityCapsManager.addDiscoverInfoByNode(nvh.getNodeVer(), info);
520 return info;
528 * @see <a href="http://xmpp.org/extensions/xep-0030.html#info-basic">XEP-30 Basic Protocol</a>
529 * @see <a href="http://xmpp.org/extensions/xep-0030.html#info-nodes">XEP-30 Info Nodes</a>
537 // Discover the entity's info
620 DiscoverInfo info = discoverInfo(entityID);
621 return canPublishItems(info);
630 * @param DiscoverInfo the discover info packet to check.
633 public static boolean canPublishItems(DiscoverInfo info) {
634 return info.containsFeature("http://jabber.org/protocol/disco#publish");