Package org.jivesoftware.smackx.packet.JingleTransport

Examples of org.jivesoftware.smackx.packet.JingleTransport.JingleTransportCandidate


            int eventType = parser.next();
            String name = parser.getName();

            if (eventType == XmlPullParser.START_TAG) {
                if (name.equals(JingleTransportCandidate.NODENAME)) {
                    JingleTransportCandidate jtc = parseCandidate(parser);
                    if (jtc != null) trans.addCandidate(jtc);
                }
                else {
                    throw new Exception("Unknown tag \"" + name + "\" in transport element.");
                }
View Full Code Here

TOP

Related Classes of org.jivesoftware.smackx.packet.JingleTransport.JingleTransportCandidate

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.