Package rocks.xmpp.extensions.reach.model

Examples of rocks.xmpp.extensions.reach.model.Address


    }

    @Test
    public void testReachabilityEquality() {

        Reachability reachability1 = new Reachability(Arrays.asList(new Address(URI.create("sip:room123@example.com"), new Address.Description("In-room video system", "en"))));
        Reachability reachability2 = new Reachability(Arrays.asList(new Address(URI.create("sip:room123@example.com"), new Address.Description("In-room video system", "en"))));

        Assert.assertEquals(reachability1, reachability2);
    }
View Full Code Here

TOP

Related Classes of rocks.xmpp.extensions.reach.model.Address

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.