Examples of FastUUIDGen


Examples of org.apache.axis.components.uuid.FastUUIDGen

    public void testSequence() {
        String current = null;
        String prev = null;
       
        FastUUIDGen g = new FastUUIDGen();
        for (int i=0;i<1000;i++) {
            current = g.nextUUID();
            if (current.equals(prev)) {
                fail("same uuid generated: " + current + " " + prev);
            }
            prev = current;
        }
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.