Package rocks.xmpp.extensions.jingle.apps.rtp.model.errors

Examples of rocks.xmpp.extensions.jingle.apps.rtp.model.errors.CryptoRequired


    @Test
    public void unmarshalRtp() throws XMLStreamException, JAXBException {
        String xml = "<crypto-required xmlns='urn:xmpp:jingle:apps:rtp:errors:1'/>\n";

        CryptoRequired cryptoRequired = unmarshal(xml, CryptoRequired.class);
        Assert.assertNotNull(cryptoRequired);
    }
View Full Code Here

TOP

Related Classes of rocks.xmpp.extensions.jingle.apps.rtp.model.errors.CryptoRequired

Copyright © 2018 www.massapicom. 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.