MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / query

Method query

src/main/java/xmpp/extensions/IqVCard.java:52–56  ·  view source on GitHub ↗
(String to, String id )

Source from the content-addressed store, hash-verified

50public class IqVCard implements JabberBlockListener
51{
52 public static JabberDataBlock query(String to, String id ) {
53 Iq result = new Iq (to, Iq.TYPE_GET, id );
54 result.addChildNs("vCard", VCard.NS_VCARD );
55 return result;
56 }
57
58 public int blockArrived(JabberDataBlock data) {
59 if( data instanceof Iq ) {

Callers 2

requestMethod · 0.95
resolveNicknamesMethod · 0.95

Calls 1

addChildNsMethod · 0.80

Tested by

no test coverage detected