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

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


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

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

TOP

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

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.