Examples of OobX


Examples of rocks.xmpp.extensions.oob.model.x.OobX

                "    <url>http://www.jabber.org/images/psa-license.jpg</url>\n" +
                "    <desc>A license to Jabber!</desc>\n" +
                "  </x>\n" +
                "</message>\n";
        Message message = unmarshal(xml, Message.class);
        OobX oobX = message.getExtension(OobX.class);
        Assert.assertNotNull(oobX);
        Assert.assertEquals(oobX.getUrl(), new URL("http://www.jabber.org/images/psa-license.jpg"));
        Assert.assertEquals(oobX.getDescription(), "A license to Jabber!");
    }
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.