Examples of Ping


Examples of rocks.xmpp.extensions.ping.model.Ping

    public void unmarshalPing() throws XMLStreamException, JAXBException {
        String xml = "<iq from='capulet.lit' to='juliet@capulet.lit/balcony' id='s2c1' type='get'>\n" +
                "  <ping xmlns='urn:xmpp:ping'/>\n" +
                "</iq>";
        IQ iq = unmarshal(xml, IQ.class);
        Ping ping = iq.getExtension(Ping.class);
        Assert.assertNotNull(ping);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.