(String to, String id)
| 43 | private final static String _PING_="_ping_"; |
| 44 | |
| 45 | public static JabberDataBlock query(String to, String id) { |
| 46 | String newId=(id==null)?_PING_+Time.utcTimeMillis():id; |
| 47 | JabberDataBlock result=new Iq(to, Iq.TYPE_GET, newId); |
| 48 | result.addChildNs(PING, "urn:xmpp:ping"); |
| 49 | return result; |
| 50 | } |
| 51 | |
| 52 | public int blockArrived(JabberDataBlock data) { |
| 53 | if (!(data instanceof Iq)) |
no test coverage detected