Package org.apache.vysper.xmpp.modules.extension.xep0220_server_dailback

Examples of org.apache.vysper.xmpp.modules.extension.xep0220_server_dailback.DialbackIdGenerator.generate()


    private Entity originating = EntityImpl.parseUnchecked("example.org");
    private String streamId = "D60000229F";
   
    public void testId() {
        DialbackIdGenerator generator = new DialbackIdGenerator();
        String id = generator.generate(receiving, originating, streamId);
       
        Assert.assertTrue(generator.verify(id, receiving, originating, streamId));
       
    }
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.